| 1234567891011121314151617181920212223 |
- package task
- import "time"
- type GameTargetComplete struct {
- Id uint `json:"id"`
- TaskId int `json:"task_id"`
- NewComplete int `json:"new_complete"`
- PayComplete int `json:"pay_complete"`
- RetainedComplete int `json:"retained_complete"`
- NewTarget int `json:"new_target"`
- PayTarget int `json:"pay_target"`
- RetainedTarget int `json:"retained_target"`
- Amount int `json:"amount"`
- CreateDate time.Time `json:"create_date"`
- UpdateTime time.Time `json:"update_time"` // 更新时间
- GameRate string `json:"game_rate"`
- }
- func (GameTargetComplete) TableName() string {
- return "game_target_complete"
- }
|