| | |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ruoyi.framework.aspectj.lang.annotation.Excel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | |
| | | |
| | | @Schema(description = "设备id") |
| | | private Integer taskId; |
| | | |
| | | @ApiModelProperty(value = "巡检状态:1=待巡检,2=已巡检") |
| | | @Excel(name = "巡检状态", readConverterExp = "1=待巡检,2=已巡检") |
| | | private Integer inspectionStatus; |
| | | |
| | | @Schema(description = "巡检人ID") |
| | | private String inspectorId; |
| | |
| | | |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long deptId; |
| | | |
| | | private Long areaId; |
| | | |
| | | @Schema(description = "来源定时任务ID") |
| | | private Long timingId; |
| | | } |