diff --git a/bonus-modules/bonus-smart-canteen/src/main/java/com/bonus/canteen/core/alloc/service/impl/AllocCanteenEvaluateServiceImpl.java b/bonus-modules/bonus-smart-canteen/src/main/java/com/bonus/canteen/core/alloc/service/impl/AllocCanteenEvaluateServiceImpl.java index b71901f..4bd41b4 100644 --- a/bonus-modules/bonus-smart-canteen/src/main/java/com/bonus/canteen/core/alloc/service/impl/AllocCanteenEvaluateServiceImpl.java +++ b/bonus-modules/bonus-smart-canteen/src/main/java/com/bonus/canteen/core/alloc/service/impl/AllocCanteenEvaluateServiceImpl.java @@ -40,7 +40,6 @@ public class AllocCanteenEvaluateServiceImpl implements IAllocCanteenEvaluateSer */ @Override public List selectAllocCanteenEvaluateList(AllocCanteenEvaluate allocCanteenEvaluate) { - allocCanteenEvaluate.setUserId(SecurityUtils.getUserId()); return allocCanteenEvaluateMapper.selectAllocCanteenEvaluateList(allocCanteenEvaluate); } @@ -53,7 +52,6 @@ public class AllocCanteenEvaluateServiceImpl implements IAllocCanteenEvaluateSer @Override public int insertAllocCanteenEvaluate(AllocCanteenEvaluate allocCanteenEvaluate) { allocCanteenEvaluate.setCreateTime(DateUtils.getNowDate()); - allocCanteenEvaluate.setUserId(SecurityUtils.getUserId()); try { return allocCanteenEvaluateMapper.insertAllocCanteenEvaluate(allocCanteenEvaluate); } catch (Exception e) { @@ -70,7 +68,6 @@ public class AllocCanteenEvaluateServiceImpl implements IAllocCanteenEvaluateSer @Override public int updateAllocCanteenEvaluate(AllocCanteenEvaluate allocCanteenEvaluate) { allocCanteenEvaluate.setUpdateTime(DateUtils.getNowDate()); - allocCanteenEvaluate.setUserId(SecurityUtils.getUserId()); try { return allocCanteenEvaluateMapper.updateAllocCanteenEvaluate(allocCanteenEvaluate); } catch (Exception e) {