14 lines
601 B
Go
14 lines
601 B
Go
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)"` // 饿了么店的配送方式
|
|
}
|
|
|
|
func (t *Jxstorefeature) TableName() string {
|
|
return "jxstorefeature"
|
|
}
|