zhangherong
2025-05-15 706053d51e4f1663f3c1959a73d59e8cde3880ae
lxzn-module-eam/src/main/java/org/jeecg/modules/eam/entity/EamMaintenanceStandardDetail.java
@@ -62,6 +62,12 @@
   /**保养要求*/
    @ApiModelProperty(value = "保养要求")
   private String itemDemand;
   /**保养要求2*/
   @ApiModelProperty(value = "保养要求2")
   private String itemDemandAlias;
   /**检查方法*/
   @ApiModelProperty(value = "检查方法")
   private String checkMethod;
   public EamMaintenanceStandardDetail(){}
@@ -85,6 +91,8 @@
      this.itemName = dto.getItemName();
      this.itemPart = dto.getItemPart();
      this.itemDemand = dto.getItemDemand();
      this.itemDemandAlias = dto.getItemDemandAlias();
      this.checkMethod = dto.getCheckMethod();
   }
   public EamMaintenanceStandardDetail(ThirdMaintenanceStandardImport dto) {
@@ -92,5 +100,7 @@
      this.itemName = dto.getItemName();
      this.itemPart = dto.getItemPart();
      this.itemDemand = dto.getItemDemand();
      this.itemDemandAlias = dto.getItemDemandAlias();
      this.checkMethod = dto.getCheckMethod();
   }
}