ta_game_record.go 319B

1234567891011121314
  1. package model
  2. import (
  3. "time"
  4. )
  5. type TaGameRecord struct {
  6. RecordId string `xorm:"VARCHAR(64)"`
  7. GameId string `xorm:"VARCHAR(64)"`
  8. GameName string `xorm:"VARCHAR(50)"`
  9. CustomerId string `xorm:"VARCHAR(64)"`
  10. CreateDate time.Time `xorm:"DATETIME"`
  11. Status int `xorm:"SMALLINT(6)"`
  12. }