更改了时间验证的类型为public

master
yang.yongquan 2022-07-07 14:17:41 +08:00
parent 434ad8f57b
commit d9ccacb9c2
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ public class Project {
private LocalDateTime projectCreatedTime;
private LocalDate projectClosedDate;
Boolean checkProjectDate() {
public Boolean checkProjectDate() {
if(!TimeUtils.validateTimeLine(projectStartDate, projectFirstTestDate, projectFinalTestDate, projectEndDate)) {
return false;
}