- store表中修改JxBrandFeeFactor,MarketAddFeeFactor,添加PayPercentage,OperatorName和OperatorPhone

This commit is contained in:
gazebo
2019-06-11 09:13:40 +08:00
parent cebf64c598
commit 8d9ce9866f
2 changed files with 14 additions and 6 deletions

View File

@@ -122,13 +122,17 @@ func GetStores(ctx *jxcontext.Context, keyword string, params map[string]interfa
t1.licence2_expire,
t1.market_man_name,
t1.market_man_phone,
t1.jx_brand_fee,
t1.market_add_fee,
t1.jx_brand_fee_factor,
t1.market_add_fee_factor,
t1.payee_name,
t1.payee_account_no,
t1.payee_bank_branch_name,
t1.payee_bank_name,
t1.pay_percentage,
t1.operator_name,
t1.operator_phone,
city.name city_name,
district.name district_name,
CONCAT('[', GROUP_CONCAT(DISTINCT CONCAT('{"vendorStoreID":"', m1.vendor_store_id, '", "vendorID":', m1.vendor_id,

View File

@@ -162,15 +162,19 @@ type Store struct {
Licence2Valid string `orm:"size(32)" json:"licence2Valid"` // 有效期开始
Licence2Expire string `orm:"size(32)" json:"licence2Expire"` // 有效期结束
MarketManName string `orm:"size(8)" json:"marketManName"` // 市场负责人姓名
MarketManPhone string `orm:"size(16)" json:"marketManPhone"` // 市场负责人电话
JxBrandFee int64 `json:"jxBrandFee"` // 京西品牌费
MarketAddFee int64 `json:"marketAddFee"` // 市场附加费
MarketManName string `orm:"size(8)" json:"marketManName"` // 市场负责人姓名
MarketManPhone string `orm:"size(16)" json:"marketManPhone"` // 市场负责人电话
JxBrandFeeFactor int `json:"jxBrandFeeFactor"` // 京西品牌费因子
MarketAddFeeFactor int `json:"marketAddFeeFactor"` // 市场附加费因子
PayeeName string `orm:"size(8)" json:"payeeName"` // 收款人姓名
PayeeAccountNo string `orm:"size(255)" json:"payeeAccountNo"` // 收款账号
PayeeBankBranchName string `orm:"size(255)" json:"payeeBankBranchName"` // 开户银行
PayeeBankName string `orm:"size(255)" json:"payeeBankName"` // 开户支行
PayPercentage int `json:"payPercentage"`
OperatorName string `orm:"size(8)" json:"operatorName"` // 运营人姓名
OperatorPhone string `orm:"size(16)" json:"operatorPhone"` // 运营人电话
}
func (*Store) TableUnique() [][]string {