- 适应快递API接口变更

This commit is contained in:
gazebo
2019-07-23 09:24:17 +08:00
parent 06c0929122
commit 3d4d539ab1
5 changed files with 120 additions and 35 deletions

View File

@@ -18,6 +18,12 @@ const (
StoreIsSyncYes = 1
)
const (
StoreAuditStatusCreated = 1
StoreAuditStatusOnline = 0
StoreAuditStatusRejected = -1
)
const (
MainSubStoreName = "本店"
MainSubStoreAddress = "本店"
@@ -368,6 +374,7 @@ type StoreCourierMap struct {
VendorID int `orm:"column(vendor_id)" json:"vendorID"`
VendorStoreID string `orm:"column(vendor_store_id);size(48)" json:"vendorStoreID"`
Status int `json:"status"`
AuditStatus int `json:"auditStatus"`
}
func (*StoreCourierMap) TableUnique() [][]string {