|
@@ -20,16 +20,18 @@ import java.util.List;
|
|
*/
|
|
*/
|
|
@Data
|
|
@Data
|
|
@Accessors(chain = true)
|
|
@Accessors(chain = true)
|
|
-@Schema(description="任务VO",required = true)
|
|
|
|
|
|
+@Schema(description = "任务VO", required = true)
|
|
public class TaskReportVO extends BaseVO {
|
|
public class TaskReportVO extends BaseVO {
|
|
private Integer id;
|
|
private Integer id;
|
|
private String createName;
|
|
private String createName;
|
|
private Integer createID;
|
|
private Integer createID;
|
|
- private Integer reportType;
|
|
|
|
|
|
+ private Integer reportType;
|
|
@Schema(description = "报告信息")
|
|
@Schema(description = "报告信息")
|
|
private Report report;
|
|
private Report report;
|
|
@Schema(description = "报告Id")
|
|
@Schema(description = "报告Id")
|
|
private Integer reportId;
|
|
private Integer reportId;
|
|
|
|
+ @Schema(description = "报告名称")
|
|
|
|
+ private String reportName;
|
|
@Schema(description = "参与人Id列表")
|
|
@Schema(description = "参与人Id列表")
|
|
private List<Integer> personIds;
|
|
private List<Integer> personIds;
|
|
|
|
|
|
@@ -42,18 +44,18 @@ public class TaskReportVO extends BaseVO {
|
|
@Schema(description = "任务类型 0开卷审核任务")
|
|
@Schema(description = "任务类型 0开卷审核任务")
|
|
private Integer type;
|
|
private Integer type;
|
|
|
|
|
|
- @Schema(description = "处理人ID",required = true)
|
|
|
|
|
|
+ @Schema(description = "处理人ID", required = true)
|
|
private Integer handlePersonId;
|
|
private Integer handlePersonId;
|
|
|
|
|
|
|
|
|
|
- @Schema(description = "处理人姓名",required = true)
|
|
|
|
- private String handlePersonName;
|
|
|
|
|
|
+ @Schema(description = "处理人姓名", required = true)
|
|
|
|
+ private String handlePersonName;
|
|
|
|
|
|
|
|
|
|
- @Schema(description = "创建任务时间")
|
|
|
|
- @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
|
- @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
|
- private Date createTime;
|
|
|
|
|
|
+ @Schema(description = "创建任务时间")
|
|
|
|
+ @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
|
+ @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
|
+ private Date createTime;
|
|
@Schema(description = "任务结束时间")
|
|
@Schema(description = "任务结束时间")
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
@JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
|
|
@JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
|