game_add_fee.go 371 B

1234567891011121314151617
  1. package task
  2. import "time"
  3. type GameAddFee struct {
  4. Id uint `json:"id"`
  5. TaskName string `json:"task_name"`
  6. CreateTime time.Time `json:"create_time"` // 创建时间
  7. CreateDate time.Time `json:"create_date"`
  8. Num int `json:"num"`
  9. Target int `json:"target"`
  10. }
  11. func (GameAddFee) TableName() string {
  12. return "game_add_fee"
  13. }