Blame view

src/main/java/com/huaheng/pc/u8/domain/ICSReceiptDetail.java 4.7 KB
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
package com.huaheng.pc.u8.domain;


import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
import org.apache.commons.lang3.builder.ToStringBuilder;

import java.io.Serializable;
import java.math.BigDecimal;

/**
 * 出库下发或回传单子表 uwshipment_detail
 *
 * @author huaheng
 * @date 2018-12-14
 */
@Data
@TableName(value = "icsreceipt_detail")
public class ICSReceiptDetail implements Serializable {

    private static final long serialVersionUID = 4217497482411056712L;
    @TableId(value = "rid",type = IdType.AUTO)
    private Integer rid;
29
30
31
32
    // ICSReceiptHeader rid
    @TableField(value ="headerId")
    private Integer headerId;
tongzhonghao authored
33
    @TableField(exist = false)
34
35
    private Integer referId;
tongzhonghao authored
36
    @TableField(exist = false)
37
38
39
    private String referCode;

    @TableField(exist = false)
40
41
42
    private Integer referLineNum;

    @TableField(exist = false)
43
44
    private String stock;
45
    // 出库下发或回传的主单code
xumiao authored
46
    @TableField(value = "cCode")
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
    private String cCode;

    //主单ID
    @TableField(value ="ID")
    @JsonProperty(value = "ID")
    private Integer ID;

    //细单ID
    @TableField(value ="AutoID")
    @JsonProperty(value = "AutoID")
    private Integer AutoID;

    //采购单一类的行号
    @TableField(value ="irowno")
    private Integer irowno;

    //项目号
    @TableField(value ="cItemName")
    private String cItemName;

    //发货退货单主表标识
    @TableField(value ="DLID")
    @JsonProperty(value = "DLID")
    private Integer DLID;
    //工作令号
    @TableField(value ="MoCode")
    @JsonProperty(value = "MoCode")
    private String MoCode;
    //销售订单号
    @TableField(value ="cSOCode")
    private String cSOCode;

    //销售订单ID
    @TableField(value ="cSOID")
    private Integer cSOID;

    //销售订单子表ID
    @TableField(value ="cSOAutoID")
    private Integer cSOAutoID;

    //库房Id
tongzhonghao authored
88
    @TableField(exist = false)
89
    private Integer warehouseId;
xumiao authored
90
    @TableField(value = "warehouseCode")
xumiao authored
91
    private String warehouseCode;
92
93
94
95
96
97
98
99
100
101
102
103
104
105

    //库房代码
    @TableField(value ="cWHCode")
    private String cWHCode;

    //库房名称
    @TableField(value ="cWHName")
    private String cWHName;

    //存货编码
    @TableField(value ="cInvCode")
    private String cInvCode;

    //存货ID
tongzhonghao authored
106
    @TableField(exist = false)
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
    private Integer materialId;

    //存货名称
    @TableField(value ="cInvName")
    private String cInvName;

    //存货规格
    @TableField(value ="cInvStd")
    private String cInvStd;

    //数量
    @TableField(value ="iQuantity")
    private BigDecimal iQuantity;

    //确认数量
    @TableField(value ="cQuantity")
    private BigDecimal cQuantity;

    //计量单位
    @TableField(value ="cComUnitName")
    private String cComUnitName;

    //计划到货日期
    @TableField(value ="dArriveDate")
    private String dArriveDate;

    //部门代码
    @TableField(value ="cDepCode")
    private String cDepCode;

    //部门名称
    @TableField(value ="cDepName")
    private String cDepName;


    //公司ID
tongzhonghao authored
143
    @TableField(exist = false)
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
    private Integer companyId;

    //公司编码
    @TableField(value ="CompanyCode")
    @JsonProperty(value = "CompanyCode")
    private String CompanyCode;

    //维护日期
    @TableField(value ="cModifyDate")
    private String cModifyDate ;

    //生产订单子表标识
    @TableField(value ="iMPoIds")
    private Integer iMPoIds;

    //采购订单号
    @TableField(value ="POCode")
    @JsonProperty(value = "POCode")
    private String POCode;
164
    @TableField(exist = false)
165
166
167
    private String cPOID;

    //采购订单ID
168
    @TableField(exist = false)
169
170
171
172
    @JsonProperty(value = "POID")
    private Integer POID;

    //采购订单子表ID
173
    @TableField(exist = false)
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
    @JsonProperty(value = "PODID")
    private Integer PODID;

    //库存调拨单子表标识
    @TableField(value ="iTrIds")
    private Integer iTrIds;

    //发货退货单子表标识
    @TableField(value ="iDLsID")
    private Integer iDLsID;

    @TableField(value ="iArrsId")
    private  Integer iArrsId;

    @TableField(value ="iPOsID")
    private Integer iPOsID;

    @TableField(value ="cDefine22")
    private String cDefine22;

    @TableField(value ="cDefine23")
    private String cDefine23;

    //采购类型编码
    @TableField(value ="cPTCode")
    private String cPTCode;
    //采购类型名称
    @TableField(value ="cPTName")
    private String cPTName;

    //条码
tongzhonghao authored
205
    @TableField(exist = false)
206
207
208
    private String lotno;

}