- jxstorefeature support added.
This commit is contained in:
12
business/model/jxstorefeature.go
Normal file
12
business/model/jxstorefeature.go
Normal 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"
|
||||
}
|
||||
Reference in New Issue
Block a user