Browse Source

手动模式

yaoyq 3 years ago
parent
commit
9c2e46d617

+ 6 - 7
imcs-admin-boot/imcs-business-entity/src/main/java/com/github/zuihou/business/productionReadyCenter/entity/BBom.java

@@ -176,17 +176,17 @@ public class BBom extends Entity<Long> {
     @Excel(name = "批量标准")
     @Excel(name = "批量标准")
     private String batchStand;
     private String batchStand;
 
 
-    /**
-     * 材料牌号
-     */
-    @ApiModelProperty(value = "材料牌号")
-    private Long materialId;
+//    /**
+//     * 材料牌号
+//     */
+//    @ApiModelProperty(value = "材料牌号")
+//    private Long materialId;
 
 
 
 
     @Builder
     @Builder
     public BBom(Long id, LocalDateTime createTime, Long createUser, LocalDateTime updateTime, Long updateUser, 
     public BBom(Long id, LocalDateTime createTime, Long createUser, LocalDateTime updateTime, Long updateUser, 
                     String auditStatus, Long parentId, String name, String no, String status, 
                     String auditStatus, Long parentId, String name, String no, String status, 
-                    String model, String brand, String specification, Long moduleId, int synFlag,String groupNo,String furnaceBatchNo,String batchStand,Long materialId) {
+                    String model, String brand, String specification, Long moduleId, int synFlag,String groupNo,String furnaceBatchNo,String batchStand) {
         this.id = id;
         this.id = id;
         this.createTime = createTime;
         this.createTime = createTime;
         this.createUser = createUser;
         this.createUser = createUser;
@@ -204,7 +204,6 @@ public class BBom extends Entity<Long> {
         this.groupNo = groupNo;
         this.groupNo = groupNo;
         this.batchStand = batchStand;
         this.batchStand = batchStand;
         this.furnaceBatchNo = furnaceBatchNo;
         this.furnaceBatchNo = furnaceBatchNo;
-        this.materialId = materialId;
         this.synFlag = synFlag;
         this.synFlag = synFlag;
     }
     }