czt
2024-11-09 2f7b25914dae54442b3fe2f91bb0060fcfd81e96
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
package com.fzzy.push.nx2023.dto;
 
import com.alibaba.fastjson.annotation.JSONField;
import com.bstek.dorado.annotation.PropertyDef;
import lombok.Data;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * @Description 会计凭证信息
 * @Author CZT
 * @Date 2024/11/6 16:30
 */
@Data
public class Nx2023Api1507 implements Serializable {
 
    @PropertyDef(label = "账套号")
    private Double nAcctId;
 
    @PropertyDef(label = "凭证类型")
    private String cVKind;
 
    @PropertyDef(label = "期间")
    private Double cMon;
 
    @PropertyDef(label = "年度")
    private Double cYear;
 
    @PropertyDef(label = "凭证号")
    private Double nVNo;
 
    @PropertyDef(label = "分录序号")
    private Double nNo;
 
    @PropertyDef(label = "凭证分类")
    private Double bTmp;
 
    @PropertyDef(label = "摘要")
    private String Digest;
 
    @PropertyDef(label = "科目编码")
    private Double cCode;
 
    @JSONField(format = "yyyy-MM-dd")
    @PropertyDef(label = "凭证日期")
    private String cVSmallDatetime;
 
    @PropertyDef(label = "制单人")
    private String cMaker;
    /**
     * 1:借方
     * -1:贷方
     */
    @PropertyDef(label = "方向")
    private String cDc;
 
    @PropertyDef(label = "审核人")
    private String cCkEr;
 
    @PropertyDef(label = "记账人")
    private String cPtEr;
    /**
     * 0:否
     * 1:是
     */
    @PropertyDef(label = "记账标志")
    private Double bPt;
 
    @PropertyDef(label = "附件张数")
    private Double nANum;
 
    @PropertyDef(label = "金额")
    private Double nM;
 
    @PropertyDef(label = "数量")
    private Double nQty;
 
    @PropertyDef(label = "单价")
    private Double nPrice;
 
    @PropertyDef(label = "结算号")
    private String cSettleNo;
 
    @PropertyDef(label = "出纳")
    private String cCashier;
 
    @PropertyDef(label = "汇率")
    private Double rate;
 
    @PropertyDef(label = "外币金额")
    private Double nFm;
 
    @PropertyDef(label = "计量单位",description = "计量单位汉字")
    private String meterUnitId;
 
    @PropertyDef(label = "操作标志")
    private String czbz;
 
    @JSONField(format = "yyyy-MM-dd HH:mm:ss")
    @PropertyDef(label = "最后更新时间")
    private Date zhgxsj;
}