Commit 554f4b7b by 刘鑫

fix: 工程师技能表UpdateTime、CreateTime 字段不能为null

1 parent ee131a21
......@@ -179,6 +179,8 @@ public class EngineerServiceImpl implements EngineerService {
e.setBeanStatus(Boolean.TRUE);
e.setDescription("");
e.setStatus(true);
e.setCreateTime(LocalDateTime.now());
e.setUpdateTime(LocalDateTime.now());
entityManager.persist(e);
}
return null;
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!