lxzn-module-dnc/src/main/java/org/jeecg/modules/dncFlow/entity/AssignFileStream.java
@@ -23,6 +23,9 @@
    private String componentId;
    @TableField(value = "parts_id")
    private String partsId;
    //工艺规程id
    @TableField(value = "psv_id")
    private String psvId;
    @TableField(value = "process_id")
    private String processId;
    @TableField(value = "step_id")
@@ -52,6 +55,14 @@
    @TableField(value = "status")
    @Dict(dicCode = "dnc_assign_stream_status")
    private Integer status;
    /**指派设备专用-所属ID*/
    @TableField(value = "attribution_id")
    private String attributionId;
    /**指派设备专用-所属type*/
    @TableField(value = "attribution_type")
    private String attributionType;
    @JsonIgnore
    @TableField(value = "create_time", select = false, fill = FieldFill.INSERT)
    private Date createTime;
@@ -68,10 +79,4 @@
    @TableLogic
    @TableField(value = "delete_flag", select = false)
    private Integer deleteFlag = 0;
    /**指派设备专用-所属ID*/
    private transient String attributionId;
    /**指派设备专用-所属type*/
    private transient String attributionType;
}