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 = "批量标准")
     private String batchStand;
 
-    /**
-     * 材料牌号
-     */
-    @ApiModelProperty(value = "材料牌号")
-    private Long materialId;
+//    /**
+//     * 材料牌号
+//     */
+//    @ApiModelProperty(value = "材料牌号")
+//    private Long materialId;
 
 
     @Builder
     public BBom(Long id, LocalDateTime createTime, Long createUser, LocalDateTime updateTime, Long updateUser, 
                     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.createTime = createTime;
         this.createUser = createUser;
@@ -204,7 +204,6 @@ public class BBom extends Entity<Long> {
         this.groupNo = groupNo;
         this.batchStand = batchStand;
         this.furnaceBatchNo = furnaceBatchNo;
-        this.materialId = materialId;
         this.synFlag = synFlag;
     }