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.
21 lines
519 B
21 lines
519 B
package values |
|
|
|
type ADReq struct { |
|
Start string `json:"Start"` |
|
End string `json:"End"` |
|
Page int `json:"Page" binding:"required"` |
|
Num int `json:"Num" binding:"required"` |
|
ChannelID []*int `json:"ChannelID"` |
|
GroupID int `json:"GroupID"` // 投放组ID |
|
} |
|
|
|
type ADResp struct { |
|
Count int64 |
|
List []ADStats |
|
Total ADStats // 当查的是一天的数据时,改值为当天汇总数据 |
|
} |
|
|
|
type ADEditReq struct { |
|
ID int `json:"ID" binding:"required"` |
|
Cost int64 `json:"Cost"` |
|
}
|
|
|