王佳豪
2021-04-28 9bd709ba929ca4885e2c118039d70f5268cc1e31
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
package com.zy.common.service.erp.entity;
 
import lombok.Data;
 
/**
 * 盘点记录
 * Created by vincent on 2020/12/3
 */
@Data
public class StockCheckRecord {
 
    // 物料内码
    private Integer FItemID;
 
    // 分录号
    private Integer FEntryID;
 
    // 盘点数量
    private Double CheckQty;
 
    // 添加时间
    private String CreateTime;
 
    // 读取标记
    private Integer Fflag_rw;
 
    // 完成标记
    private Integer Fflag_finish;
 
}