啊鑫
2025-02-15 6d451494073276a7fa2b38f07c40d16f5c09af68
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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
package com.gs.xky.entity;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * @TableName MES_INV_ITEM_ARN_DETAIL
 */
@TableName(value = "MES_INV_ITEM_ARN_DETAIL")
@Data
public class MesInvItemArnDetail implements Serializable {
    @TableField(exist = false)
    private static final long serialVersionUID = 1L;
    /**
     * SEQ_INV_ID
     */
    @TableId
    private Long id;
    /**
     * 主表ID
     */
    private Long mid;
    /**
     * 采购单号
     */
    private String ebeln;
    /**
     * 采购订单行号
     */
    private Long ebelnLine;
    /**
     * 采购订单数量
     */
    private Long ebelnQty;
    /**
     * 物料编码
     */
    private String itemNo;
    /**
     * 收货数量
     */
    private Long quantity;
    /**
     * 创建人
     */
    private String createBy;
    /**
     * 创建时间
     */
    private Date createDate;
    /**
     * 最后更新人
     */
    private String lastupdateBy;
    /**
     * 最后更新时间
     */
    private Date lastupdateDate;
    /**
     * 分厂编码
     */
    private String factory;
    /**
     * 公司代码
     */
    private String company;
    /**
     * 采购单ID
     */
    private Long ebelnK3id;
    /**
     * 采购单行ID
     */
    private Long lineK3id;
    /**
     * 本次应收数量
     */
    private Long subQty;
    /**
     * 余量
     */
    private Long marginQty;
    /**
     * 任务单号
     */
    private String workNo;
    /**
     * 急料标识
     */
    private Long urgentFlag;
    /**
     * 备注
     */
    private String memo;
    /**
     * 检验结果
     */
    private String checkRes;
    /**
     * 检验状态  (待检、分选、特采、已检)
     */
    private String checkStates;
    /**
     * 收货余量
     */
    private Long quantityM;
    /**
     * 本次应收余量
     */
    private Long subMqty;
    /**
     * 检验日期
     */
    private Date checkDate;
    /**
     * 是否检验
     */
    private Integer ischeck;
    /**
     * 已收数量
     */
    private Long okQty;
    /**
     * 已收余量
     */
    private Long okMqty;
    /**
     * 产品型号
     */
    private String boardStyle;
    /**
     * 任务单行号
     */
    private Long workLine;
    /**
     * 0、采购单,1、委外单
     */
    private Long fType;
    /**
     * 是否入库
     */
    private Integer isdepsIn;
    /**
     * 到货单号
     */
    private String dha001;
    /**
     * 已入库数量
     */
    private Long okRkqty;
    /**
     * 到货单号
     */
    private String cbillNo;
    /**
     * 采购入库数量
     */
    private Long cgRkqty;
    /**
     * 物料ID
     */
    private Long itemId;
    /**
     * 退货标识
     */
    private Long returnFlag;
    /**
     * 销售订单号
     */
    private String salesOrder;
    /**
     * 专用物料标识
     */
    private Long isZy;
    /**
     * 入库完成时间
     */
    private Date rkDate;
    /**
     * 计划跟踪号
     */
    private String fmtono;
    /**
     * 供协单号
     */
    private String deliveryNo;
    /**
     * 供协分录内码
     */
    private Long deliveryLine;
}