Files
jx-callback/business/model/jxstorefeature.go
2018-07-23 18:35:48 +08:00

13 lines
491 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"` // 定义为京东到家 平台的订单是否支持三方配送
}
func (t *Jxstorefeature) TableName() string {
return "jxstorefeature"
}