This commit is contained in:
2023-06-28 11:03:03 +08:00
parent 0a038581a2
commit 59b7cc8da8

View File

@@ -103,10 +103,10 @@ public class PileMerchantInfoServiceImpl implements IPileMerchantInfoService {
// pileMerchantInfo.setId(deptId);
pileMerchantInfo.setDeptId(String.valueOf(deptId));
pileMerchantInfo.setStatus(Constants.ONE);
String appId = StringUtils.isBlank(pileMerchantInfo.getAppId())
? appid
: pileMerchantInfo.getAppId();
pileMerchantInfo.setAppId(appId);
// String appId = StringUtils.isBlank(pileMerchantInfo.getAppId())
// ? appid
// : pileMerchantInfo.getAppId();
pileMerchantInfo.setAppId(pileMerchantInfo.getAppId());
return pileMerchantInfoMapper.insertPileMerchantInfo(pileMerchantInfo);
}