game_hand_card_log.go 382 B

1234567891011121314151617
  1. package task
  2. import "time"
  3. type GameHandCardLog struct {
  4. Id uint `json:"id"`
  5. TaskId int `json:"task_id"`
  6. HandId uint `json:"hand_id"`
  7. CreateTime time.Time `json:"create_time"` // 更新时间
  8. Card string `json:"card"`
  9. Amount int `json:"amount"`
  10. }
  11. func (GameHandCardLog) TableName() string {
  12. return "game_hand_card_log"
  13. }