update 项目库-未符合项

This commit is contained in:
lijiarao
2023-11-28 19:49:15 +08:00
parent 04a48888f3
commit 922774d705
2 changed files with 7 additions and 10 deletions
@@ -65,9 +65,6 @@ public class LawsEvaluationNotMetServiceImpl extends ServiceImpl<LawsEvaluationN
*/
@Override
public void add(LawsEvaluationNotMet lawsEvaluationNotMet) {
Date now = new Date();
lawsEvaluationNotMet.setCreateTime(now);
lawsEvaluationNotMet.setUpdateTime(now);
save(lawsEvaluationNotMet);
}
@@ -79,8 +76,6 @@ public class LawsEvaluationNotMetServiceImpl extends ServiceImpl<LawsEvaluationN
*/
@Override
public void editById(LawsEvaluationNotMet lawsEvaluationNotMet) {
Date now = new Date();
lawsEvaluationNotMet.setUpdateTime(now);
saveOrUpdate(lawsEvaluationNotMet);
}