package model import ( "time" ) type TaRecordSuppot struct { SupportId string `xorm:"VARCHAR(64)"` RecordId string `xorm:"VARCHAR(64)"` CustomerId string `xorm:"VARCHAR(64)"` CreateDate time.Time `xorm:"DATETIME"` }