wzy
2020-12-13 28d2d010f0dda4c11c024d516287aeee6094548b
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
package com.matrix.system.hive.bean;
 
import java.io.Serializable;
 
/**
 *
 * 
 * @date 2016-07-18 18:11
 */
public class SysAllotDetail implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * 序号
     */
    private Long id;
 
    /**
     * 所属调拨单id
     */
    private Long allotId;
 
    /**
     * sku id
     */
    private Long skuId;
 
    /**
     * 调拨申请数量
     */
    private Integer appTotal;
 
    /**
     * 实际调拨数量
     */
    private Integer realTotal;
    /**
     * 实际接收数量
     */
    private Integer receiveTotal;
    /**
     * 备注
     */
    private String remark;
 
    /**
     * 关联的sku
     */
 
    private SysGoods goods;
    /**
     * 调拨单价
     */
    private Double wholesale;
 
    /*
     * 调拨库存id
     */
    private Long storeId;
 
    /**
     *出库
     */
    private  SysStoreInfo storeInfo;
 
 
    public Double getWholesale() {
        return wholesale;
    }
 
    public void setWholesale(Double wholesale) {
        this.wholesale = wholesale;
    }
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
 
 
    public Long getStoreId() {
        return storeId;
    }
 
    public void setStoreId(Long storeId) {
        this.storeId = storeId;
    }
 
    public Integer getReceiveTotal() {
        return receiveTotal;
    }
 
    public void setReceiveTotal(Integer receiveTotal) {
        this.receiveTotal = receiveTotal;
    }
 
    public Integer getAppTotal() {
        return appTotal;
    }
 
    public void setAppTotal(Integer appTotal) {
        this.appTotal = appTotal;
    }
 
    public Integer getRealTotal() {
        return realTotal;
    }
 
    public void setRealTotal(Integer realTotal) {
        this.realTotal = realTotal;
    }
 
    public String getRemark() {
        return remark;
    }
 
    public void setRemark(String remark) {
        this.remark = remark;
    }
 
 
    public SysStoreInfo getStoreInfo() {
        return storeInfo;
    }
 
    public void setStoreInfo(SysStoreInfo storeInfo) {
        this.storeInfo = storeInfo;
    }
 
    public Long getAllotId() {
        return allotId;
    }
 
    public void setAllotId(Long allotId) {
        this.allotId = allotId;
    }
 
    public Long getSkuId() {
        return skuId;
    }
 
    public void setSkuId(Long skuId) {
        this.skuId = skuId;
    }
 
 
    public SysGoods getGoods() {
        return goods;
    }
 
    public void setGoods(SysGoods goods) {
        this.goods = goods;
    }
}