jiangping
2023-08-10 e3523883aadf423cb78647c38f0648c2143d2a89
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
package doumeemes.dao.ext.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import com.fasterxml.jackson.annotation.JsonFormat;
import java.util.Date;
import java.math.BigDecimal;
 
/**
 * @author 江蹄蹄
 * @date 2022/09/23 14:39
 */
@Data
@ApiModel("物料库存余额变动记录表Ext查询参数")
public class QueryWStockRecordExtDTO {
 
    @ApiModelProperty(value = "主键", example = "1")
    private Integer id;
 
    @ApiModelProperty(value = "是否已删除 0未删除 1已删除", example = "1")
    private Byte deleted;
 
    @ApiModelProperty(value = "创建人编码", example = "1")
    private Integer createUser;
 
    @ApiModelProperty(value = "创建时间")
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date createTime;
 
    @ApiModelProperty(value = "更新人编码", example = "1")
    private Integer updateUser;
 
    @ApiModelProperty(value = "更新时间")
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date updateTime;
 
    @ApiModelProperty(value = "备注")
    private String remark;
 
    @ApiModelProperty(value = "主组织编码(关联department表根组织)", example = "1")
    private Integer rootDepartId;
 
    @ApiModelProperty(value = "公司级组织编码(关联department表)", example = "1")
    private Integer departId;
 
    @ApiModelProperty(value = "物料编码(关联material_distribute表)", example = "1")
    private Integer materialId;
 
    @ApiModelProperty(value = "单位编码(关联unit_distribute表)", example = "1")
    private Integer unitId;
 
    @ApiModelProperty(value = "库位编码(关联warehouse_location表)", example = "1")
    private Integer locationId;
 
    @ApiModelProperty(value = "仓库编码(关联warehouse表)", example = "1")
    private Integer warehouseId;
 
    @ApiModelProperty(value = "批次号")
    private String batch;
 
    @ApiModelProperty(value = "当前所在工序编码(关联procedure表)", example = "1")
    private Integer procedureId;
 
    @ApiModelProperty(value = "产品质量属性 0合格 1不良 2报废", example = "1")
    private Integer qualityType;
 
    @ApiModelProperty(value = "变更类别:1-出;2-入", example = "1")
    private Byte changeType;
 
    @ApiModelProperty(value = "变更库存量", example = "1")
    private BigDecimal num;
 
    @ApiModelProperty(value = "变更前库存量", example = "1")
    private BigDecimal beforNum;
 
    @ApiModelProperty(value = "变更后库存量", example = "1")
    private BigDecimal afterNum;
 
    @ApiModelProperty(value = "出入库单编码(关联w_outbound表)", example = "1")
    private Integer outboundId;
 
    @ApiModelProperty(value = "出入库单明细编码(关联w_outbound_detail表)", example = "1")
    private Integer detailId;
 
    @ApiModelProperty(value = "库存明细记录主键(关联w_stock表)", example = "1")
    private Integer wStockId;
 
}