- jxstorefeature support added.

This commit is contained in:
gazebo
2018-07-23 18:35:48 +08:00
parent 479ce46200
commit 857f2cae45
4 changed files with 50 additions and 28 deletions

View File

@@ -0,0 +1,12 @@
package model
type Jxstorefeature struct {
Id int `orm:"column(storeid);pk"`
Autopickup int8 `orm:"column(autopickup);null"`
Transmtzs int8 `orm:"column(transmtzs);null"` // 定义为饿了么平台的订单是否支持三方配送
Deliverycompetition int8 `orm:"column(deliverycompetition);null"` // 定义为京东到家 平台的订单是否支持三方配送
}
func (t *Jxstorefeature) TableName() string {
return "jxstorefeature"
}