21 lines
1.0 KiB
Go
21 lines
1.0 KiB
Go
package legacymodel
|
|
|
|
type Jxstorefeature struct {
|
|
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(0)"` // 饿了么门店是否支持3方配送
|
|
SupportMtps int8 `orm:"default(1)"` // 是否支持美团配送
|
|
SupportDada int8 `orm:"default(0)"` // 是否支持达达
|
|
SupportFengNiao int8 `orm:"default(0)"` // 是否支持蜂鸟
|
|
|
|
// Transmtzs int8 `orm:"column(transmtzs);null"` // 不用了
|
|
// Deliverycompetition int8 `orm:"column(deliverycompetition);null"` // 不用了
|
|
}
|
|
|
|
func (t *Jxstorefeature) TableName() string {
|
|
return "jxstorefeature"
|
|
}
|