Merge remote-tracking branch 'origin/master'

This commit is contained in:
gaowdong 2025-03-25 17:59:07 +08:00
commit c09e12beff
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;
}