- enable dada.
This commit is contained in:
@@ -12,7 +12,8 @@ const (
|
||||
VendorIDDeliveryBegin = 101
|
||||
VendorIDDada = 101
|
||||
VendorIDMTPS = 102
|
||||
VendorIDDeliveryEnd = 102
|
||||
VendorIDFengNiao = 103
|
||||
VendorIDDeliveryEnd = VendorIDFengNiao
|
||||
)
|
||||
|
||||
var (
|
||||
|
||||
@@ -1,11 +1,18 @@
|
||||
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"` // 定义为京东到家 平台的订单是否支持三方配送
|
||||
ElmDeliveryType int8 `orm:"column(elm_delivery_type);default(0)"` // 饿了么店的配送方式
|
||||
Id int `orm:"column(storeid);pk"`
|
||||
Autopickup int8 `orm:"column(autopickup);null"`
|
||||
JdDeliveryType int8 `orm:"column(jd_delivery_type);default(0)"` // 京东店的配送方式
|
||||
ElmDeliveryType int8 `orm:"column(elm_delivery_type);default(0)"` // 饿了么店的配送方式
|
||||
JdCompetition int8 `orm:"default(1)"` // 京东门店是否支持3方配送
|
||||
ElmCompetition int8 `orm:"default(1)"` // 饿了么门店是否支持3方配送
|
||||
SupportMtps int8 `orm:"default(1)"` // 是否支持美团配送
|
||||
SupportDada int8 `orm:"default(1)"` // 是否支持达达
|
||||
SupportFengNiao int8 `orm:"default(1)"` // 是否支持蜂鸟
|
||||
|
||||
// Transmtzs int8 `orm:"column(transmtzs);null"` // 不用了
|
||||
// Deliverycompetition int8 `orm:"column(deliverycompetition);null"` // 不用了
|
||||
}
|
||||
|
||||
func (t *Jxstorefeature) TableName() string {
|
||||
|
||||
Reference in New Issue
Block a user