| | |
| | | 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; |
| | |
| | | @Excel(name = "巡检任务名称") |
| | | private String taskName; |
| | | |
| | | @Schema(description = "巡检项目") |
| | | @Excel(name = "巡检项目") |
| | | private String inspectionProject; |
| | | |
| | | @Schema(description = "设备id") |
| | | private Integer taskId; |
| | | |
| | | @ApiModelProperty(value = "巡检状态:1=待巡检,2=已巡检") |
| | | @Excel(name = "巡检状态", readConverterExp = "1=待巡检,2=已巡检") |
| | | private Integer inspectionStatus; |
| | | |
| | | @Schema(description = "巡检人ID") |
| | | private String inspectorId; |
| | |
| | | @Schema(description = "任务附加说明或特殊情况记录") |
| | | @Excel(name = "备注") |
| | | private String remarks; |
| | | |
| | | @Schema(description = "巡检结果 0 异常 1 正常") |
| | | private String inspectionResult; |
| | | |
| | | @Schema(description = "异常描述") |
| | | private String abnormalDescription; |
| | | |
| | | @Schema(description = "关联维修单ID") |
| | | private Long deviceRepairId; |
| | | |
| | | @Schema(description = "验收人ID") |
| | | private Long acceptanceUserId; |
| | | |
| | | @Schema(description = "验收人") |
| | | @Excel(name = "验收人") |
| | | private String acceptanceName; |
| | | |
| | | @Schema(description = "任务登记人ID") |
| | | private Long registrantId; |
| | |
| | | |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long deptId; |
| | | |
| | | private Long areaId; |
| | | |
| | | @Schema(description = "来源定时任务ID") |
| | | private Long timingId; |
| | | } |