| 123456789101112131415161718192021222324 |
- package dataStatistics
- type OldDataShow struct {
- Id uint `json:"id"`
- UpdateTime string `json:"updateTime"` // 更新时间
- CreateTime string `json:"createTime"` // 创建时间
- TaskId int `json:"task_id"` //任务id
- TaskName string `json:"task_name"` //任务名
- NewDate string `json:"new_date"` // 日期
- TargetNew int `json:"target_new"` //
- TargetPay int `json:"target_pay"` //
- TargetActive int `json:"target_active"` //
- CompleteNew int `json:"complete_new"` //
- CompletePay int `json:"complete_pay"` //
- CompleteActive int `json:"complete_active"` //
- IsComplete int `json:"is_complete"` //
- Amount string `json:"amount"` //
- Remark string `json:"remark"`
- CompleteNewHand int `json:"complete_new_hand"`
- CompleteLcHand int `json:"complete_lc_hand"`
- CompletePayHand int `json:"complete_pay_hand"`
- AmountHand int `json:"amount_hand"`
- }
|