This commit is contained in:
邹宗楠
2023-09-20 13:54:26 +08:00
parent de0332cf8b
commit e25ce112a3
2 changed files with 7 additions and 1 deletions

View File

@@ -51,7 +51,7 @@ const (
)
const (
MaxStoreNameLen = 13 // 门店名称最大长度2个英文或数字算一位
MaxStoreNameLen = 100 // 门店名称最大长度2个英文或数字算一位
)
type CreateShopResult struct {
@@ -343,6 +343,7 @@ func (a *API) UpdateStoreInfo4Open2(updateParams *OpStoreParams, modifyCloseStat
if !modifyCloseStatus {
delete(mapData, "closeStatus")
}
delete(mapData, "storeNotice") // 这个限制长度100个汉字老是超长!直接不修改了!
// else {
// jdStoreID, err := a.GetJdStoreID(int(utils.Str2Int64(updateParams.OutSystemID)))
// if err != nil {