无关风月
2024-09-03 56dfe0d4bf81262622a1919cceb2b039fd356209
ruoyi-modules/ruoyi-management/src/main/java/com/ruoyi/management/domain/SlVolumeProductionZygl.java
@@ -24,8 +24,8 @@
@ApiModel(value = "SlVolumeProductionZygl对象", description = "转移管理")
public class SlVolumeProductionZygl {
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
    @TableId(value = "id", type = IdType.ASSIGN_ID)
    private Long id;
    @ApiModelProperty("发起人ID")
    @TableField("sys_id")
@@ -34,6 +34,10 @@
    @ApiModelProperty("转移仓库ID")
    @TableField("management_id")
    private Long managementId;
    @ApiModelProperty("被转移入仓库ID")
    @TableField("bmanagement_id")
    private Long bmanagementId;
    @ApiModelProperty("发起时间")
    @TableField("starti_time")
@@ -63,17 +67,30 @@
    @TableField("update_time")
    private Date updateTime;
    @ApiModelProperty("1.待审核,2 已拒绝,3 审核通过")
    @ApiModelProperty("1.待审核,2 已拒绝,3 审核通过,4 已完成,5 已取消")
    @TableField("present_state")
    private Integer presentState;
    @ApiModelProperty("1 待管理员审核,2 待主管审核,3 待主任审核,4 已通过,5 已拒绝")
    @ApiModelProperty("1 待管理员审核,2 待主管审核,3 待主任审核,4 待入库,5 待从重新提交, 6已完成, 7,已取消")
    @TableField("audit_status")
    private Integer auditStatus;
    @ApiModelProperty("被转移仓库ID")
    @TableField("bmanagement_id")
    private Long bmanagementId;
    @ApiModelProperty("拒绝理由")
    @TableField("reasons_refusal")
    private String reasonsRefusal;
    @ApiModelProperty("转移原因")
    @TableField("source")
    private String source;
    @ApiModelProperty("附件")
    @TableField("attachment_url")
    private String attachmentUrl;
    @ApiModelProperty("审批单")
    @TableField("authorization_url")
    private String authorizationUrl;
}