laoyao hace 3 años
padre
commit
a34da85a06

+ 10 - 8
imcs-admin-boot/imcs-business-entity/src/main/java/com/github/zuihou/business/productionReadyCenter/entity/BBomProcedureTool.java

@@ -64,13 +64,6 @@ public class BBomProcedureTool extends Entity<Long> {
     @Excel(name = "刀具名称")
     private String toolName;
 
-    /**
-     * 数量
-     */
-    @ApiModelProperty(value = "数量")
-    @TableField("count")
-    @Excel(name = "数量")
-    private Integer count;
 
     /**
      * 文件路径
@@ -79,7 +72,16 @@ public class BBomProcedureTool extends Entity<Long> {
     @Length(max = 256, message = "文件路径长度不能超过256")
     @TableField(value = "use_time", condition = LIKE)
     @Excel(name = "文件路径")
-    private String useTime;
+    private int useTime;
+
+
+    @ApiModelProperty(value = "刀具ID")
+    @TableField("tool_id")
+    @Excel(name = "刀具ID")
+    private Long toolId;
+
+
+
 
 
     @Builder