| | |
| | | |
| | | import com.alibaba.fastjson.annotation.JSONField; |
| | | import com.bstek.dorado.annotation.PropertyDef; |
| | | import com.fasterxml.jackson.annotation.JsonProperty; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | |
| | | import javax.persistence.Column; |
| | | import javax.persistence.Entity; |
| | | import javax.persistence.Id; |
| | | import javax.persistence.Table; |
| | | import javax.persistence.*; |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | |
| | |
| | | * 通过接口获取的单位账套后,在局端自动产生账套号 |
| | | */ |
| | | @Id |
| | | @Column(name = "ID_", precision = 18) |
| | | @JSONField(serialize = false) |
| | | private String id; |
| | | |
| | | @PropertyDef(label = "账套号") |
| | | @Column(name = "nAcctId", length = 9) |
| | | private Double nAcctId; |
| | | @Column(name = "nacctid", length = 23) |
| | | private String nacctid; |
| | | |
| | | @PropertyDef(label = "凭证类型") |
| | | @Column(name = "cVKind", length = 10) |
| | | private String cVKind; |
| | | @Column(name = "cvkind",length = 10) |
| | | private String cvkind; |
| | | |
| | | @PropertyDef(label = "期间") |
| | | @Column(name = "cMon", length = 3) |
| | | private Double cMon; |
| | | @Column(name = "cmon") |
| | | private Integer cmon; |
| | | |
| | | @PropertyDef(label = "年度") |
| | | @Column(name = "cYear", length = 4) |
| | | private Double cYear; |
| | | @Column(name = "cyear") |
| | | private Integer cyear; |
| | | |
| | | @PropertyDef(label = "凭证号") |
| | | @Column(name = "nVNo", length = 9) |
| | | private Double nVNo; |
| | | @Column(name = "nvno") |
| | | private Integer nvno; |
| | | |
| | | @PropertyDef(label = "科目编码") |
| | | @Column(name = "cCode", length = 80) |
| | | private String cCode; |
| | | @Column(name = "ccode", length = 80) |
| | | private String ccode; |
| | | |
| | | @PropertyDef(label = "对方科目编码") |
| | | @Column(name = "cDFCode", length = 80) |
| | | private String cDFCode; |
| | | @Column(name = "cdfcode", length = 80) |
| | | private String cdfcode; |
| | | |
| | | @PropertyDef(label = "现金流量项目代码") |
| | | @Column(name = "cCashCode", length = 80) |
| | | private String cCashCode; |
| | | @Column(name = "ccashcode", length = 80) |
| | | private String ccashcode; |
| | | |
| | | @PropertyDef(label = "分录序号") |
| | | @Column(name = "nNo", precision = 9) |
| | | private Double nNo; |
| | | @Column(name = "nrowno") |
| | | private Integer nrowno; |
| | | |
| | | @PropertyDef(label = "金额") |
| | | @Column(name = "nM", precision = 20,scale = 4) |
| | | private Double nM; |
| | | @Column(name = "nm", precision = 20,scale = 4) |
| | | private Double nm; |
| | | |
| | | /** |
| | | * 1:流入 |
| | | * -1:流出 |
| | | */ |
| | | @PropertyDef(label = "方向") |
| | | @Column(name = "cDc", length = 3) |
| | | private String cDc; |
| | | @Column(name = "cdc") |
| | | private Integer cdc; |
| | | |
| | | @PropertyDef(label = "统一库区编码") |
| | | @Column(name = "tykqbm", length = 22) |
| | | private String tykqbm; |
| | | |
| | | |
| | | @PropertyDef(label = "操作标志") |