zhangherong
2025-07-12 4d4bc8ebf380ff900201f42bffa357293cf97f27
lxzn-module-eam/src/main/java/org/jeecg/modules/eam/entity/EamTechnicalStatusEvaluationOrderDetail.java
@@ -40,6 +40,9 @@
   /**更新时间*/
    @ApiModelProperty(value = "更新时间")
   private Date updateTime;
   /**工单ID*/
   @ApiModelProperty(value = "工单ID")
   private String orderId;
   /**序号*/
    @ApiModelProperty(value = "序号")
   private Integer itemCode;
@@ -70,4 +73,16 @@
   /**维修人/精度检查者签字时间*/
    @ApiModelProperty(value = "维修人/精度检查者签字时间")
   private Date repairmanSignatureTime;
   public EamTechnicalStatusEvaluationOrderDetail() {
   }
   public EamTechnicalStatusEvaluationOrderDetail(EamTechnicalStatusEvaluationStandardDetail standardDetail, String orderId) {
      this.orderId = orderId;
      this.itemCode = standardDetail.getItemCode();
      this.checkCategory = standardDetail.getCheckCategory();
      this.itemName = standardDetail.getItemName();
      this.subItemName = standardDetail.getSubItemName();
      this.toleranceValue = standardDetail.getToleranceValue();
   }
}