zhangherong
2025-05-15 19418ed9603775127ba3f8dbe8b100628df94896
lxzn-module-eam/src/main/java/org/jeecg/modules/eam/entity/EamMaintenanceStandardDetail.java
@@ -59,9 +59,15 @@
   /**子保养项*/
   @ApiModelProperty(value = "子保养项")
   private String subItemName;
   /**保养要求*/
    @ApiModelProperty(value = "保养要求")
   /**检查标准或要求*/
    @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();
   }
}