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 InspectionTaskPageVo { private Long id; @Schema(description = "巡检任务名称") private String taskName; @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 taskStatus; }