| | |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ruoyi.framework.aspectj.lang.annotation.Excel; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | |
| | | @TableId(type = IdType.AUTO) |
| | | private Long id; |
| | | |
| | | @ApiModelProperty(value = "任务名称") |
| | | @ApiModelProperty(value = "设备名称") |
| | | @Excel(name = "巡检任务名称") |
| | | private String taskName; |
| | | |
| | | @ApiModelProperty(value = "设备id") |
| | | private Integer taskId; |
| | | |
| | | @ApiModelProperty(value = "巡检人") |
| | | @Excel(name = "执行巡检人") |
| | | private String inspectorIds; |
| | | |
| | | @ApiModelProperty(value = "巡检地点") |
| | | private String inspectionLocation; |
| | | |
| | | @ApiModelProperty(value = "频次") |
| | | @Excel(name = "频次") |
| | | private String frequencyType; |
| | | |
| | | @ApiModelProperty(value = "频次详情") |
| | | @Excel(name = "开始日期与时间") |
| | | private String frequencyDetail; |
| | | |
| | | @ApiModelProperty(value = "下次执行时间") |
| | |
| | | private boolean isActive; |
| | | |
| | | @ApiModelProperty(value = "备注") |
| | | @Excel(name = "备注") |
| | | private String remarks; |
| | | |
| | | @ApiModelProperty(value = "登记人id") |
| | | private Long registrantId; |
| | | |
| | | @ApiModelProperty(value = "登记人") |
| | | @Excel(name = "登记人") |
| | | private String registrant; |
| | | |
| | | @ApiModelProperty(value = "登记日期") |
| | | @Excel(name = "登记日期", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss") |
| | | private LocalDate registrationDate; |
| | | |
| | | @ApiModelProperty(value = "状态") |
| | |
| | | |
| | | @ApiModelProperty(value = "租户ID") |
| | | @TableField(fill = com.baomidou.mybatisplus.annotation.FieldFill.INSERT) |
| | | private Integer tenantId; |
| | | private Long tenantId; |
| | | |
| | | } |