10-25-供应商删除修改

This commit is contained in:
2025-10-25 21:57:13 +08:00
parent 123896f08b
commit 5d8af1cab8
4 changed files with 4 additions and 5 deletions

View File

@ -34,7 +34,7 @@ public class XzdSupplierInfo extends BaseEntity {
/** /**
* 区域编码 * 区域编码
*/ */
private String cityCode; private Long cityCode;
/** /**
* 单位编号 * 单位编号

View File

@ -34,7 +34,7 @@ public class XzdSupplierInfoBo extends BaseEntity {
/** /**
* 区域编码 * 区域编码
*/ */
private String cityCode; private Long cityCode;
/** /**
* 单位编号 * 单位编号

View File

@ -39,7 +39,7 @@ public class XzdSupplierInfoVo implements Serializable {
/** /**
* 区域编码 * 区域编码
*/ */
private String cityCode; private Long cityCode;
/** /**
* 单位编号 * 单位编号

View File

@ -561,7 +561,6 @@ public class XzdSupplierInfoServiceImpl extends ServiceImpl<XzdSupplierInfoMappe
if(isValid){ if(isValid){
//TODO 做一些业务上的校验,判断是否需要校验 //TODO 做一些业务上的校验,判断是否需要校验
} }
boolean b = baseMapper.deleteByIds(ids) > 0;
for (Long id : ids) { for (Long id : ids) {
@ -694,7 +693,7 @@ public class XzdSupplierInfoServiceImpl extends ServiceImpl<XzdSupplierInfoMappe
xzdContractInfoService.remove(contractInfoLambdaQueryWrapper); xzdContractInfoService.remove(contractInfoLambdaQueryWrapper);
} }
return b; return baseMapper.deleteByIds(ids) > 0;
} }