wechat_scanner_ledger.go 711 B

123456789101112131415
  1. package response
  2. type WeChatScannerLedgerResponse struct {
  3. Id uint `json:"id"`
  4. NewDate string `json:"new_date"` //日期
  5. TaskId int `json:"task_id"` //任务id
  6. TaskName string `json:"task_name"` //任务名
  7. Platform string `json:"platform"` //平台名
  8. Ledger string `json:"ledger"` //总消耗
  9. LedgerNew string `json:"ledger_new"` //新增消耗
  10. LedgerRetained string `json:"ledger_retained"` //留存消耗
  11. UnitPriceNew string `json:"unit_price_new"` //新增单价
  12. UnitPriceRetained string `json:"unit_price_retained"` //留存单价
  13. }