- package model
-
- import (
- "time"
- )
-
- type TaGameRecord struct {
- RecordId string `xorm:"VARCHAR(64)"`
- GameId string `xorm:"VARCHAR(64)"`
- GameName string `xorm:"VARCHAR(50)"`
- CustomerId string `xorm:"VARCHAR(64)"`
- CreateDate time.Time `xorm:"DATETIME"`
- Status int `xorm:"SMALLINT(6)"`
- }
|