| | |
| | | /**保养要求*/ |
| | | @ApiModelProperty(value = "保养要求") |
| | | private String itemDemand; |
| | | /**保养要求2*/ |
| | | @ApiModelProperty(value = "保养要求2") |
| | | private String itemDemandAlias; |
| | | /**检查方法*/ |
| | | @ApiModelProperty(value = "检查方法") |
| | | private String checkMethod; |
| | | |
| | | |
| | | public EamMaintenanceStandardDetail(){} |
| | |
| | | this.itemName = dto.getItemName(); |
| | | this.itemPart = dto.getItemPart(); |
| | | this.itemDemand = dto.getItemDemand(); |
| | | this.itemDemandAlias = dto.getItemDemandAlias(); |
| | | this.checkMethod = dto.getCheckMethod(); |
| | | } |
| | | |
| | | public EamMaintenanceStandardDetail(ThirdMaintenanceStandardImport dto) { |
| | |
| | | this.itemName = dto.getItemName(); |
| | | this.itemPart = dto.getItemPart(); |
| | | this.itemDemand = dto.getItemDemand(); |
| | | this.itemDemandAlias = dto.getItemDemandAlias(); |
| | | this.checkMethod = dto.getCheckMethod(); |
| | | } |
| | | } |