game_hand_complete.go 806 B

1234567891011121314151617181920212223
  1. package task
  2. import "time"
  3. type GameHandComplete struct {
  4. Id uint `json:"id"`
  5. TaskId int `json:"task_id"`
  6. CreateDate time.Time `json:"create_date"`
  7. CreateTime time.Time `json:"create_time"` // 更新时间
  8. HandNewComplete int `json:"hand_new_complete"`
  9. HandRetainedComplete int `json:"hand_retained_complete"`
  10. HandPayComplete int `json:"hand_pay_complete"`
  11. HandAmountTotal int `json:"hand_amount_total"`
  12. IsFree int `json:"is_free"`
  13. FreeMethod int `json:"free_method"`
  14. IsUploadWt int `json:"is_upload_wt"`
  15. IsUploadXjf int `json:"is_upload_xjf"`
  16. }
  17. func (GameHandComplete) TableName() string {
  18. return "game_hand_complete"
  19. }