|
@@ -196,7 +196,7 @@ public class ShopServiceImpl implements ShopService {
|
|
return ResponseJson.error("该供应商名称已经存在,请重新输入", null);
|
|
return ResponseJson.error("该供应商名称已经存在,请重新输入", null);
|
|
}
|
|
}
|
|
// 添加时验证appId是否已被使用
|
|
// 添加时验证appId是否已被使用
|
|
- if (null != userIdByAppId) {
|
|
|
|
|
|
+ if (StringUtils.isNotEmpty(appId) && null != userIdByAppId) {
|
|
return ResponseJson.error("该appId已被使用,请重新输入", null);
|
|
return ResponseJson.error("该appId已被使用,请重新输入", null);
|
|
}
|
|
}
|
|
} else {
|
|
} else {
|