package com.yc.open.qiyunfang.controller; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.Data; /** * 凭证未清项 */ @Data public class VoucherOutstandingEntry { @JsonProperty("TIME") String TIME;//时间 会计期间 @JsonProperty("ENTITY") String ENTITY;//公司名称 @JsonProperty("RACCT") String RACCT;//科目编码 @JsonProperty("KUNNR") String KUNNR;//客户编号 @JsonProperty("LIFNR") String LIFNR;//供应商编号 @JsonProperty("XREF2") String XREF2;//SAP款项性质 @JsonProperty("BELNR") String BELNR;//凭证号 @JsonProperty("BUZEI") String BUZEI;//凭证行号 分录行项目号 @JsonProperty("RTCUR") String RTCUR;//原币币种 @JsonProperty("RHCUR") String RHCUR;//本币币种 @JsonProperty("TSL") Double TSL;//原币金额 @JsonProperty("HSL") Double HSL;//本币金额 @JsonProperty("NETDT") String NETDT;//到期日 账龄到期日(加上信用期之后的账龄起算日) @JsonProperty("BLDAT") String BLDAT;//凭证日期 @JsonProperty("REALDATE") String REALDATE;//账龄计算开始日 等于账龄到期日 @JsonProperty("CURRATE") Double CURRATE;//汇率 }