package run_log import "time" type RunLogType uint8 const ( LogTypeOrder = iota + 1 LogTypePayment LogTypePurchase ) type RunLog struct { Id int64 LogType RunLogType OrderNo string Remark string Info string `xorm:"varchar(5000)"` Created time.Time `xorm:"created"` }