2 天以前 e772b3d8cf395e9d441419373d883601350fbf0b
src/main/java/com/ruoyi/device/pojo/MaintenanceTask.java
@@ -28,11 +28,17 @@
    @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 = "保养任务名称")
@@ -40,6 +46,10 @@
    @Schema(description = "设备id")
    private Long taskId;
    @Schema(description = "保养人")
    @Excel(name = "保养人")
    private String maintenancePerson;
    @Schema(description = "频次")
    @Excel(name = "频次")
@@ -58,9 +68,16 @@
    @Schema(description = "是否激活")
    private boolean isActive;
    @Schema(description = "是否启用 0-禁用 1-启用")
    private Integer isEnabled;
    @Schema(description = "备注")
    @Excel(name = "备注")
    private String remarks;
    @Schema(description = "保养内容")
    @Excel(name = "保养内容")
    private String maintenanceContent;
    @Schema(description = "录入人id")
    private Long registrantId;
@@ -109,4 +126,7 @@
    @TableField(fill = FieldFill.INSERT)
    private Long deptId;
    @TableField(exist = false)
    private String areaName;
}