This commit is contained in:
sxu 2025-03-25 17:51:33 +08:00
parent 79fd70e701
commit 4c2a9205d0
2 changed files with 0 additions and 7 deletions

View File

@ -148,7 +148,6 @@ public class AllocCanteenBusinessImpl implements AllocCanteenBusiness {
public AllocCanteenModifyModel getCanteenForModify(Long canteenId) {
AllocCanteen allocCanteen = this.allocCanteenService.getOne(Wrappers.lambdaQuery(AllocCanteen.class)
.eq(AllocCanteen::getCanteenId, canteenId));
allocCanteen.setContactTel(this.aesEncryptUtil.aesEncrypt(allocCanteen.getContactTel()));
AllocCanteenSaveDTO canteenSaveDTO = new AllocCanteenSaveDTO();
BeanUtils.copyProperties(allocCanteen, canteenSaveDTO);
if (ObjectUtil.isNotNull(canteenSaveDTO.getCustId())) {

View File

@ -260,12 +260,6 @@ public class AllocCanteenServiceImpl extends ServiceImpl<AllocCanteenMapper, All
}
page = this.baseMapper.pageCanteen(page, param);
Iterator var3 = page.getRecords().iterator();
while (var3.hasNext()) {
AllocCanteenVO canteenVO = (AllocCanteenVO) var3.next();
canteenVO.setContactTel(this.aesEncryptUtil.aesEncrypt(canteenVO.getContactTel()));
}
return page;
}