| 1234567891011121314151617181920212223 |
- package task
- import "time"
- type GameHandComplete struct {
- Id uint `json:"id"`
- TaskId int `json:"task_id"`
- CreateDate time.Time `json:"create_date"`
- CreateTime time.Time `json:"create_time"` // 更新时间
- HandNewComplete int `json:"hand_new_complete"`
- HandRetainedComplete int `json:"hand_retained_complete"`
- HandPayComplete int `json:"hand_pay_complete"`
- HandAmountTotal int `json:"hand_amount_total"`
- IsFree int `json:"is_free"`
- FreeMethod int `json:"free_method"`
- IsUploadWt int `json:"is_upload_wt"`
- IsUploadXjf int `json:"is_upload_xjf"`
- }
- func (GameHandComplete) TableName() string {
- return "game_hand_complete"
- }
|