Commit d23e68e2 by shenjunjie

Merge branch 'release' into 'master'

Release

See merge request !59
parents 07eac5fe 535f9309
......@@ -148,7 +148,7 @@ public class ProjectServiceImpl implements ProjectService {
return false;
} else {
Update update = new Update();
update.set("uTime", new Date());
update.set("uTime", System.currentTimeMillis());
update.set("isShow", !project.isShow());
projectDao.updateOneByIdWithField(pid, update);
return true;
......@@ -162,7 +162,7 @@ public class ProjectServiceImpl implements ProjectService {
ExceptionCast.cast(CommonCodeEnum.INVALID_PARAM, "项目不存在");
}
Update update = new Update();
update.set("uTime", new Date());
update.set("uTime", System.currentTimeMillis());
update.set("isStart", !project.isStart());
projectDao.updateOneByIdWithField(pid, update);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment