| | |
| | | @Schema(description = "规格型号") |
| | | private String deviceModel; |
| | | |
| | | @Schema(description = "设备项目") |
| | | private String machineryCategory; |
| | | |
| | | /** |
| | | * 主键ID |
| | | */ |
| | | @TableId(type = IdType.AUTO) |
| | | private Long id; |
| | | |
| | | @Schema(description = "设备区域ID") |
| | | private Long areaId; |
| | | |
| | | @Schema(description = "设备名称") |
| | | @Excel(name = "保养任务名称") |
| | |
| | | |
| | | @Schema(description = "设备id") |
| | | private Long taskId; |
| | | |
| | | @Schema(description = "保养人") |
| | | @Excel(name = "保养人") |
| | | private String maintenancePerson; |
| | | |
| | | @Schema(description = "频次") |
| | | @Excel(name = "频次") |
| | |
| | | |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long deptId; |
| | | |
| | | @TableField(exist = false) |
| | | private String areaName; |
| | | } |