From 4c2a9205d01132c805be38b3dbffd6312531bf9d Mon Sep 17 00:00:00 2001 From: sxu <602087911@qq.com> Date: Tue, 25 Mar 2025 17:51:33 +0800 Subject: [PATCH] bug 5406 --- .../canteen/business/impl/AllocCanteenBusinessImpl.java | 1 - .../canteen/service/impl/AllocCanteenServiceImpl.java | 6 ------ 2 files changed, 7 deletions(-) diff --git a/bonus-modules/bonus-smart-canteen/src/main/java/com/bonus/canteen/core/allocation/canteen/business/impl/AllocCanteenBusinessImpl.java b/bonus-modules/bonus-smart-canteen/src/main/java/com/bonus/canteen/core/allocation/canteen/business/impl/AllocCanteenBusinessImpl.java index a8a3807d..19c41c54 100644 --- a/bonus-modules/bonus-smart-canteen/src/main/java/com/bonus/canteen/core/allocation/canteen/business/impl/AllocCanteenBusinessImpl.java +++ b/bonus-modules/bonus-smart-canteen/src/main/java/com/bonus/canteen/core/allocation/canteen/business/impl/AllocCanteenBusinessImpl.java @@ -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())) { diff --git a/bonus-modules/bonus-smart-canteen/src/main/java/com/bonus/canteen/core/allocation/canteen/service/impl/AllocCanteenServiceImpl.java b/bonus-modules/bonus-smart-canteen/src/main/java/com/bonus/canteen/core/allocation/canteen/service/impl/AllocCanteenServiceImpl.java index ede3b4cc..40878a92 100644 --- a/bonus-modules/bonus-smart-canteen/src/main/java/com/bonus/canteen/core/allocation/canteen/service/impl/AllocCanteenServiceImpl.java +++ b/bonus-modules/bonus-smart-canteen/src/main/java/com/bonus/canteen/core/allocation/canteen/service/impl/AllocCanteenServiceImpl.java @@ -260,12 +260,6 @@ public class AllocCanteenServiceImpl extends ServiceImpl