Files
jx-callback/business/model/legacymodel/tmplog.go
gazebo d7de24715b - remove useless legacy codes.
- refactor models
2018-10-16 10:47:44 +08:00

10 lines
305 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"`
IntValue1 int64
Msg string `orm:"type(text)"`
}