ICSCyclecountAdjustHeader.java
873 Bytes
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
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;
/**
* 盘点差异主表
* @author huaheng
* @date 2019-1-8
*/
@Data
public class ICSCyclecountAdjustHeader implements Serializable {
private static final long serialVersionUID = -4835172715460251167L;
//盘点单号
private String cCode;
//盘点主表标识
private Integer cId;
//盘点类型
private String cType;
//盘点日期
private String dDate;
//盘点单据创建人
private String dOperator;
//盘点单据审核人
private String dVerifyer;
//盘点审核时间
private String dDate2;
//公司代码(账套代码)
@JsonProperty(value = "CompanyCode")
private String CompanyCode;
}