Blame view

src/main/java/com/huaheng/pc/u8/domain/ICSCyclecountAdjustDetail.java 1.45 KB
周鸿 authored
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
package com.huaheng.pc.u8.domain;

import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
import org.apache.commons.lang.builder.ToStringBuilder;

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

/**
 * 盘点差异子表
 * @author huaheng
 * @date 2019-1-8
 */
@Data
public class ICSCyclecountAdjustDetail implements Serializable {
    private static final long serialVersionUID = -6468135598463133272L;
    //盘点明细标识
    private Integer cDID;
    //盘点主表单号
    private String cCode;
    //盘点主表标识
    private Integer cId;
    //仓库编码
    private String cWhCode;
    //仓库名称
    private String cWhName;
    //仓库货位
    private String cWarecell;
    //仓库容器
    private String cContainer;
    //项目号
    private String cItemName;
    //存货编码
    private String cInvCode;
    //存货名称
    private String cInvName;
    //规格型号
    private String cInvStd;
    //系统数量
    private BigDecimal iQuantity;
    //计量单位
    private String cComUnitName;
    //盘点登记数量
    private BigDecimal dQuantity;
    //商品属性(合格品、不良品、待检验品等)
    private String cAttribute;
    //待调整数量
    private BigDecimal aQuantiy;
    //登记人
    private String cRegister;
    //登记时间
    private String cRegisterDate;
    //公司代码(账套代码)
    @JsonProperty(value ="CompanyCode")
    private String CompanyCode;


}