zhangherong
2025-03-25 c2dbde3d4826946e7a40fff6efeb08547e4ab75a
lxzn-module-eam-common/src/main/java/org/jeecg/modules/eam/entity/EamEquipment.java
@@ -1,6 +1,7 @@
package org.jeecg.modules.eam.entity;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonFormat;
@@ -72,12 +73,14 @@
   @ApiModelProperty(value = "操作系统")
   private java.lang.String operationSystem;
   /**使用部门*/
   @Excel(name = "使用部门", width = 15)
   @Excel(name = "使用部门", width = 15, dicCode = "mdc_production, production_name, id")
   @ApiModelProperty(value = "使用部门")
   @Dict(dicCode = "mdc_production, production_name, id")
   private java.lang.String orgId;
   /**设备管理员*/
   @Excel(name = "设备管理员", width = 15)
   @Excel(name = "设备管理员", width = 15, dicCode = "sys_user, realname, username")
   @ApiModelProperty(value = "设备管理员")
   @Dict(dicCode = "sys_user, realname, username")
   private java.lang.String equipmentManager;
   /**设备分类*/
   @Excel(name = "设备分类", width = 15, dicCode = "equipment_category")
@@ -174,12 +177,16 @@
   /**备注*/
    @ApiModelProperty(value = "备注")
   private java.lang.String remark;
   /**
    * 使用部门所有ID
    * 使用部门ID + 其所有父级ID, 以逗号分割
    */
   @ApiModelProperty(value = "使用部门所有ID")
   private String orgParentIds;
   @ApiModelProperty(value = "MDC设备类型")
   private String deviceType;
   @TableField(exist = false)
   @ApiModelProperty(value = "维修状态")
   @Dict(dicCode = "equipment_repair_status")
   private String repairStatus;
   @TableField(exist = false)
   @ApiModelProperty(value = "保养状态")
   @Dict(dicCode = "equipment_maintenance_status")
   private String maintenanceStatus;
}