Files
jx-callback/business/model/vendor_org_code.go
苏尹岚 575b80d890 aa
2021-01-26 08:59:14 +08:00

13 lines
430 B
Go
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
package model
type VendorOrgCode struct {
ModelIDCULD
VendorID int `orm:"column(vendor_id)" json:"vendorID"`
VendorOrgCode string `orm:"size(32)" json:"vendorOrgCode"` // 同一平台下不同的商户代码,如果只有一个,可以为空
Comment string `json:"comment"` //备注
//appkeysecret token等
IsJxCat int `json:"isJxCat"` //是否使用京西分类0默认使用
}