jiangping
2023-08-17 6365ab0a976afdd247742c9b3dca15deb3a7a7a1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
package doumeemes.dao.ext.bean;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import doumeemes.core.annotation.excel.ExcelColumn;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import javax.validation.constraints.NotNull;
import java.util.Date;
import java.util.List;
 
@Data
@ApiModel("仓库管理-出入库单信息表 - bean")
public class WOutBoundBean {
 
 
 
    @ApiModelProperty(value = "计划时间")
    @NotNull( message = "计划时间不能为空")
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date planDate;
 
    @ApiModelProperty(value = "单据日期")
    @JsonFormat(pattern = "yyyy-MM-dd")
//    @NotNull( message = "单据日期不能为空")
    private Date validDate;
 
    @ApiModelProperty(value = "仓库编码")
    @NotNull( message = "仓库编码不能为空")
    private Integer warehouseId;
 
    @ApiModelProperty(value = "出入库类型 0出库单 1入库单")
    @NotNull( message = "出入库类型不能为空")
    private Integer type;
 
    @ApiModelProperty(value = "单据来源 0手工创建、1系统创建")
    @NotNull( message = "单据来源不能为空")
    private Integer origin;
 
    @ApiModelProperty(value = "单据摘要信息")
    private String abstracts;
 
    @ApiModelProperty(value = "来源单据类型 0采购订单、1生产工单、2销售订单、3转库单、4盘点单")
    private Integer originType;
 
    @ApiModelProperty(value = "来源单据号码")
    private String originCode;
 
    @ApiModelProperty(value = "来源单据ID(根据ORIGIN_TYPE确定关联关系)", example = "1")
    private Integer originId;
 
    @ApiModelProperty(value = "单据类型", example = "1")
    private Integer billType;
 
    @ApiModelProperty(value = "明细数据")
    private List<WoutBoundDetailBean> woutBoundDetailBeans;
 
 
}