This commit is contained in:
苏尹岚
2021-01-28 09:52:18 +08:00
parent 7deeb4fbd3
commit 599749191b
4 changed files with 17 additions and 8 deletions

View File

@@ -1,5 +1,10 @@
package model
const (
VendorOrgTypePlatform = "platform" //外卖平台
VendorOrgTypeDelivery = "delivery" //配送平台
)
type VendorOrgCode struct {
ModelIDCULD
@@ -8,7 +13,7 @@ type VendorOrgCode struct {
Comment string `json:"comment"` //备注
//appkeysecret token等
Type string `json:"type"` //platform 普通平台, delivery 三方配送平台
IsJxCat int `json:"isJxCat"` //是否使用京西分类0默认使用
IsOpen int `json:"isOpen"` //主要三方配送用是否配送默认0表示打开1表示关
VendorType string `json:"vendorType"` //platform 普通平台, delivery 三方配送平台
IsJxCat int `json:"isJxCat"` //是否使用京西分类0默认使用
IsOpen int `json:"isOpen"` //主要三方配送用是否配送默认0表示打开1表示关
}