- write important error msg to db.

This commit is contained in:
gazebo
2018-08-02 09:24:18 +08:00
parent f0ea5f1186
commit 0d759218c1
4 changed files with 37 additions and 2 deletions

View File

@@ -0,0 +1,8 @@
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)"`
}