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.
21 lines
292 B
Go
21 lines
292 B
Go
![]()
1 week ago
|
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"`
|
||
|
}
|