后台评价管理

This commit is contained in:
sxu 2025-04-14 20:05:17 +08:00
parent 4364ce9d57
commit c7189d5cfb
1 changed files with 0 additions and 3 deletions

View File

@ -40,7 +40,6 @@ public class AllocCanteenEvaluateServiceImpl implements IAllocCanteenEvaluateSer
*/ */
@Override @Override
public List<AllocCanteenEvaluate> selectAllocCanteenEvaluateList(AllocCanteenEvaluate allocCanteenEvaluate) { public List<AllocCanteenEvaluate> selectAllocCanteenEvaluateList(AllocCanteenEvaluate allocCanteenEvaluate) {
allocCanteenEvaluate.setUserId(SecurityUtils.getUserId());
return allocCanteenEvaluateMapper.selectAllocCanteenEvaluateList(allocCanteenEvaluate); return allocCanteenEvaluateMapper.selectAllocCanteenEvaluateList(allocCanteenEvaluate);
} }
@ -53,7 +52,6 @@ public class AllocCanteenEvaluateServiceImpl implements IAllocCanteenEvaluateSer
@Override @Override
public int insertAllocCanteenEvaluate(AllocCanteenEvaluate allocCanteenEvaluate) { public int insertAllocCanteenEvaluate(AllocCanteenEvaluate allocCanteenEvaluate) {
allocCanteenEvaluate.setCreateTime(DateUtils.getNowDate()); allocCanteenEvaluate.setCreateTime(DateUtils.getNowDate());
allocCanteenEvaluate.setUserId(SecurityUtils.getUserId());
try { try {
return allocCanteenEvaluateMapper.insertAllocCanteenEvaluate(allocCanteenEvaluate); return allocCanteenEvaluateMapper.insertAllocCanteenEvaluate(allocCanteenEvaluate);
} catch (Exception e) { } catch (Exception e) {
@ -70,7 +68,6 @@ public class AllocCanteenEvaluateServiceImpl implements IAllocCanteenEvaluateSer
@Override @Override
public int updateAllocCanteenEvaluate(AllocCanteenEvaluate allocCanteenEvaluate) { public int updateAllocCanteenEvaluate(AllocCanteenEvaluate allocCanteenEvaluate) {
allocCanteenEvaluate.setUpdateTime(DateUtils.getNowDate()); allocCanteenEvaluate.setUpdateTime(DateUtils.getNowDate());
allocCanteenEvaluate.setUserId(SecurityUtils.getUserId());
try { try {
return allocCanteenEvaluateMapper.updateAllocCanteenEvaluate(allocCanteenEvaluate); return allocCanteenEvaluateMapper.updateAllocCanteenEvaluate(allocCanteenEvaluate);
} catch (Exception e) { } catch (Exception e) {