Files
jx-callback/business/legacymodel/tmplog.go
2018-08-02 09:24:18 +08:00

9 lines
281 B
Go

package legacymodel
type TempLog struct {
ID int64 `orm:"column(id)"`
VendorOrderID string `orm:"column(vendor_order_id);size(48);index"`
RefVendorOrderID string `orm:"column(ref_vendor_order_id);size(48);index"`
Msg string `orm:"type(text)"`
}