- package response
- type WeChatScannerLedgerResponse struct {
- Id uint `json:"id"`
- NewDate string `json:"new_date"` //日期
- TaskId int `json:"task_id"` //任务id
- TaskName string `json:"task_name"` //任务名
- Platform string `json:"platform"` //平台名
- Ledger string `json:"ledger"` //总消耗
- LedgerNew string `json:"ledger_new"` //新增消耗
- LedgerRetained string `json:"ledger_retained"` //留存消耗
- UnitPriceNew string `json:"unit_price_new"` //新增单价
- UnitPriceRetained string `json:"unit_price_retained"` //留存单价
- }
|