- mtps added.

- refactor.
This commit is contained in:
gazebo
2018-06-18 12:03:53 +08:00
parent a0a97c6fc2
commit 03c7efbe1e
14 changed files with 302 additions and 178 deletions

View File

@@ -0,0 +1,13 @@
package models
type MtpsOrder struct {
DeliveryId int64
MtPeisongId string `orm:"size(64);unique"`
OrderId string `orm:"size(64);unique"`
Status int
OperateTime int
CourierName string `orm:"size(16)"`
CourierPhone string `orm:"size(16)"`
CancelReasonId int
CancelReason string `orm:"size(256)"`
}