shiyunteng
7 天以前 0ad13cb4bf387d4f2db2d62540ebb73a376087f5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package com.by4cloud.platformx.device.entity.vo;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.util.Date;
 
@Data
public class InspectionPlanPageVo {
 
    private Long id;
 
    @Schema(description = "巡检计划名称")
    private String planName;
 
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @Schema(description = "巡检计划开始时间")
    private Date startTime;
 
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @Schema(description = "巡检计划结束时间")
    private Date endTime;
 
    @Schema(description = "巡检人员")
    private Long inspectionUserId;
 
    @Schema(description = "巡检人员")
    private String inspectionUserName;
 
    @Schema(description = "是否已生成巡检任务")
    private Integer taskFlag;
 
}