广告平台(站长使用)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

20 regels
885 B

  1. package md
  2. type GenerateWxAdData struct {
  3. OriginalDataId int `json:"original_data_id" example:"原始数据id"`
  4. OriginalExposureCount int `json:"original_exposure_count" example:"原-曝光量"`
  5. OriginalEcpm string `json:"original_ecpm" example:"原-广告千次曝光收益(分)"`
  6. NowExposureCount int `json:"now_exposure_count" example:"现-曝光量"`
  7. NowEcpm string `json:"now_ecpm" example:"现-广告千次曝光收益(分)"`
  8. }
  9. type ClacEcpmReq struct {
  10. OriginalExposureCount int `json:"original_exposure_count" example:"原-曝光量"`
  11. OriginalEcpm string `json:"original_ecpm" example:"原-广告千次曝光收益(分)"`
  12. GenerateDataId int `json:"generate_data_id" example:"原始数据id"`
  13. }
  14. type SettlementWxAdData struct {
  15. GenerateDataId int `json:"generate_data_id" example:"生成数据id"`
  16. }