后台评价管理
This commit is contained in:
parent
4364ce9d57
commit
c7189d5cfb
|
|
@ -40,7 +40,6 @@ public class AllocCanteenEvaluateServiceImpl implements IAllocCanteenEvaluateSer
|
|||
*/
|
||||
@Override
|
||||
public List<AllocCanteenEvaluate> 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) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue