oldDataShow.go 1.0 KB

123456789101112131415161718192021222324
  1. package dataStatistics
  2. type OldDataShow struct {
  3. Id uint `json:"id"`
  4. UpdateTime string `json:"updateTime"` // 更新时间
  5. CreateTime string `json:"createTime"` // 创建时间
  6. TaskId int `json:"task_id"` //任务id
  7. TaskName string `json:"task_name"` //任务名
  8. NewDate string `json:"new_date"` // 日期
  9. TargetNew int `json:"target_new"` //
  10. TargetPay int `json:"target_pay"` //
  11. TargetActive int `json:"target_active"` //
  12. CompleteNew int `json:"complete_new"` //
  13. CompletePay int `json:"complete_pay"` //
  14. CompleteActive int `json:"complete_active"` //
  15. IsComplete int `json:"is_complete"` //
  16. Amount string `json:"amount"` //
  17. Remark string `json:"remark"`
  18. CompleteNewHand int `json:"complete_new_hand"`
  19. CompleteLcHand int `json:"complete_lc_hand"`
  20. CompletePayHand int `json:"complete_pay_hand"`
  21. AmountHand int `json:"amount_hand"`
  22. }