EcpmInitBean.h 644 B

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