src/main/java/com/ruoyi/production/pojo/ProductWorkOrder.java
@@ -28,6 +28,20 @@
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
    /**
     * 用户id
     */
    @ApiModelProperty(value = "用户id")
    private Long userId;
    /**
     * 用户昵称
     */
    @ApiModelProperty(value = "用户昵称")
    @Excel(name = "用户昵称")
    private String nickName;
    /**
     * 工艺路线项目id
     */
@@ -122,4 +136,11 @@
    private BigDecimal completeQuantity;
    @ApiModelProperty(value = "创建用户")
    @TableField(fill = FieldFill.INSERT)
    private Integer createUser;
    @TableField(fill = FieldFill.INSERT)
    private Long deptId;
}