#
luxiaotao1123
2021-03-23 0d334766bcd06f6ce8678caed5747600f74b4d21
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
package zy.cloud.wms.common.service.erp.entity;
 
import lombok.Data;
 
/**
 * Created by vincent on 2021/3/4
 */
@Data
public class GetBasisResult {
 
    private String Yjfl; // 一级分类
 
    private String Ejfl; // 二级分类
 
    private String UserCode;    // 商品/客户编号
 
    private String FullName;    // 商品/客户名称
 
    private Integer Rec;        // 商品/客户自增ID
 
    private String ModifyDate;  // 商品/客户修改时间
 
    private String Unit3;
 
    private String Barcode;
 
    private String Standard;
 
    private Double UnitRate1;
 
    private Double UnitRate2;
 
}