|
@@ -21,49 +21,47 @@ public class AidingStudentsCollegeManageProjectInfoPageRespDO extends PageParam
|
|
|
@ExcelProperty("id")
|
|
|
private Long id;
|
|
|
|
|
|
- @Schema(description = "学生提交时间段时间")
|
|
|
- @ExcelProperty("学生提交时间段时间")
|
|
|
- private String submitTime;
|
|
|
+ @Schema(description = "学生提交开始时间")
|
|
|
+ private LocalDateTime submitStartTime;
|
|
|
|
|
|
- @Schema(description = "班级民主评议时间段")
|
|
|
- @ExcelProperty("班级民主评议时间段")
|
|
|
- private String evaluationTime;
|
|
|
+ @Schema(description = "学生提交结束时间")
|
|
|
+ private LocalDateTime submitEndTime;
|
|
|
|
|
|
- @Schema(description = "学院审核时间段")
|
|
|
- @ExcelProperty("学院审核时间段")
|
|
|
- private String auditTime;
|
|
|
+ @Schema(description = "班级民主评议开始时间")
|
|
|
+ private LocalDateTime evaluationStartTime;
|
|
|
+
|
|
|
+ @Schema(description = "班级民主评议结束时间")
|
|
|
+ private LocalDateTime evaluationEndTime;
|
|
|
+
|
|
|
+ @Schema(description = "学院审核开始时间")
|
|
|
+ private LocalDateTime auditStartTime;
|
|
|
+
|
|
|
+ @Schema(description = "学院审核结束时间")
|
|
|
+ private LocalDateTime auditEndTime;
|
|
|
|
|
|
@Schema(description = "公示时间段")
|
|
|
- @ExcelProperty("公示时间段")
|
|
|
- private String publicityTime;
|
|
|
+ private LocalDateTime publicityTime;
|
|
|
|
|
|
@Schema(description = "状态值,待发布0,评审中1,公示中2,,已上报3", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
|
|
|
- @ExcelProperty("状态值,待发布0,评审中1,公示中2,,已上报3")
|
|
|
private Integer comStatus;
|
|
|
|
|
|
@Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED)
|
|
|
- @ExcelProperty("创建时间")
|
|
|
- private String createTime;
|
|
|
+ private LocalDateTime createTime;
|
|
|
|
|
|
@Schema(description = "项目管理id", example = "1134")
|
|
|
- @ExcelProperty("项目管理id")
|
|
|
private Long manageId;
|
|
|
|
|
|
@Schema(description = "学院部门id", example = "32049")
|
|
|
- @ExcelProperty("学院部门id")
|
|
|
private Long collegeId;
|
|
|
|
|
|
@Schema(description = "学院通知文件")
|
|
|
- @ExcelProperty("学院通知文件")
|
|
|
private String collegeNoticeFile;
|
|
|
|
|
|
@Schema(description = "学院通知文件名称", example = "芋艿")
|
|
|
- @ExcelProperty("学院通知文件名称")
|
|
|
private String collegeNoticeFileName;
|
|
|
|
|
|
@Schema(description = "上报时间")
|
|
|
- @ExcelProperty("上报时间")
|
|
|
- private String reportingTime;
|
|
|
+ private LocalDateTime reportingTime;
|
|
|
|
|
|
|
|
|
|
|
@@ -80,7 +78,7 @@ public class AidingStudentsCollegeManageProjectInfoPageRespDO extends PageParam
|
|
|
|
|
|
@Schema(description = "截止时间")
|
|
|
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
|
|
|
- private String diEndTime;
|
|
|
+ private LocalDateTime diEndTime;
|
|
|
|
|
|
@Schema(description = "家庭经济困难学生认定项目通知富文本")
|
|
|
private String diNotice;
|