1234567891011121314151617181920212223242526 |
- //
- // EcpmAdName.h
- // UUTUtils2.1
- //
- // Created by zhuge on 2020/7/14.
- // Copyright © 2020 dym. All rights reserved.
- // 广告后台配置的广告名字
- #import <Foundation/Foundation.h>
- @class ProjectInfo_Server_AdId;
- NS_ASSUME_NONNULL_BEGIN
- @interface EcpmInitBean : NSObject
- @property (strong) NSString *idIndex; // key
- @property (strong) NSString *adName; // 自定义名字
- @property (strong) NSString *adId; // id
- @property (strong) NSString *worthMul; // 倍数
- @property (strong) NSString *nameInCSV; // 表格中的名字
- - (instancetype)initWithAdId:(ProjectInfo_Server_AdId*)adid;
- @end
- NS_ASSUME_NONNULL_END
|