package com.ruoyi.management.domain.vo;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.fasterxml.jackson.annotation.JsonInclude;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import java.util.Date;
|
|
@Data
|
@ApiModel(value = "转移管理", description = "转移管理")
|
public class VolumeProductionzZyglVO {
|
@ApiModelProperty("用户名称")
|
@JsonInclude(JsonInclude.Include.ALWAYS)
|
private String nickName;
|
|
@ApiModelProperty(name = "手机号码")
|
@JsonInclude(JsonInclude.Include.ALWAYS)
|
private String phonenumber;
|
|
private String id;
|
|
@ApiModelProperty("仓库名称")
|
@JsonInclude(JsonInclude.Include.ALWAYS)
|
private String storeManagementName;
|
|
@ApiModelProperty("发起时间")
|
@JsonInclude(JsonInclude.Include.ALWAYS)
|
private Date startiTime;
|
|
@ApiModelProperty("发起人ID")
|
@TableField("sys_id")
|
private Long sysId;
|
|
|
@ApiModelProperty("仓库ID")
|
private Long managementId;
|
|
@ApiModelProperty("转移仓库名称")
|
@JsonInclude(JsonInclude.Include.ALWAYS)
|
private String bstoreManagementName;
|
|
|
|
@ApiModelProperty("转移仓库ID")
|
private Long bmanagementId;
|
|
@ApiModelProperty("结束时间")
|
private Date endTime;
|
|
@ApiModelProperty("1.待审核,2 已拒绝,3 审核通过,4 已完成,5 已取消")
|
private Integer presentState;
|
|
@ApiModelProperty("1 待管理员审核,2 待主管审核,3 待主任审核,4 待出库,5 待从重新提交, 6已出库, 7,已取消 ,8 已完成")
|
private Integer auditStatus;
|
}
|