|
@@ -0,0 +1,101 @@
|
|
|
+package cn.iocoder.yudao.module.as.dal.dataobject.aidingstudentscollegemanage;
|
|
|
+
|
|
|
+import cn.iocoder.yudao.framework.common.pojo.PageParam;
|
|
|
+import com.alibaba.excel.annotation.ExcelProperty;
|
|
|
+import io.swagger.v3.oas.annotations.media.Schema;
|
|
|
+import lombok.Data;
|
|
|
+import lombok.EqualsAndHashCode;
|
|
|
+import lombok.ToString;
|
|
|
+import org.springframework.format.annotation.DateTimeFormat;
|
|
|
+
|
|
|
+import java.time.LocalDateTime;
|
|
|
+
|
|
|
+import static cn.iocoder.yudao.framework.common.util.date.DateUtils.FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND;
|
|
|
+
|
|
|
+@Schema(description = "管理后台 - 家庭困难认定项目学院项目信息管理分页 Request VO")
|
|
|
+@Data
|
|
|
+@EqualsAndHashCode(callSuper = true)
|
|
|
+@ToString(callSuper = true)
|
|
|
+public class AidingStudentsCollegeManageProjectInfoPageRespDO extends PageParam {
|
|
|
+ @Schema(description = "id", requiredMode = Schema.RequiredMode.REQUIRED, example = "2482")
|
|
|
+ @ExcelProperty("id")
|
|
|
+ private Long id;
|
|
|
+
|
|
|
+ @Schema(description = "学生提交时间段时间")
|
|
|
+ @ExcelProperty("学生提交时间段时间")
|
|
|
+ private String submitTime;
|
|
|
+
|
|
|
+ @Schema(description = "班级民主评议时间段")
|
|
|
+ @ExcelProperty("班级民主评议时间段")
|
|
|
+ private String evaluationTime;
|
|
|
+
|
|
|
+ @Schema(description = "学院审核时间段")
|
|
|
+ @ExcelProperty("学院审核时间段")
|
|
|
+ private String auditTime;
|
|
|
+
|
|
|
+ @Schema(description = "公示时间段")
|
|
|
+ @ExcelProperty("公示时间段")
|
|
|
+ private String 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;
|
|
|
+
|
|
|
+ @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;
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ @Schema(description = "项目标题", example = "赵六")
|
|
|
+ private String diName;
|
|
|
+
|
|
|
+ @Schema(description = "状态值,待发布0,进行中1,已完成2", example = "1")
|
|
|
+ private Integer diStatus;
|
|
|
+
|
|
|
+/* @Schema(description = "创建时间")
|
|
|
+ @DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
|
|
|
+ private LocalDateTime[] createTime;*/
|
|
|
+
|
|
|
+ @Schema(description = "截止时间")
|
|
|
+ @DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
|
|
|
+ private String diEndTime;
|
|
|
+
|
|
|
+ @Schema(description = "家庭经济困难学生认定项目通知富文本")
|
|
|
+ private String diNotice;
|
|
|
+
|
|
|
+ @Schema(description = "家庭经济困难学生认定项目评审规则文件")
|
|
|
+ private String[] diNoticeFile;
|
|
|
+
|
|
|
+ @Schema(description = "家庭经济困难学生认定项目评审规则文件名称", example = "芋艿")
|
|
|
+ private String[] diNoticeFileName;
|
|
|
+
|
|
|
+ @Schema(description = "创建人")
|
|
|
+ private String creator;
|
|
|
+
|
|
|
+ /*@Schema(description = "助学项目管理vo类")
|
|
|
+ private AidingStudentsManageRespVO projectInfo;
|
|
|
+ @Schema(description = "助学项目学院管理vo类")
|
|
|
+ private AidingStudentsCollegeManageRespVO collegeInfo;*/
|
|
|
+}
|