#
luxiaotao1123
2021-08-03 67da83c698e77ccf178669a31e4bd3a4e8fc1ca7
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
package com.zy.common.service.erp.entity;
 
import lombok.Data;
 
/**
 * 盘点记录
 * Created by vincent on 2020/12/3
 */
@Data
public class StockCheckRecord {
 
    // 物料码
    private String FNumber;
 
    // 盘点数量
    private Double CheckQty;
 
    // 添加时间
    private String CreateTime;
 
    // 读取标记
    private Integer Fflag_rw;
 
    // 完成标记
    private Integer Fflag_finish;
 
    private Integer id;
 
    private Integer sync_id;
 
}