You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
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"`
|
|
}
|