JsonCustomsInvoice.java 1016 Bytes
Newer Older
frank.xa.zhang's avatar
frank.xa.zhang committed
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
package pwc.taxtech.atms.dto.vatdto;

import com.fasterxml.jackson.annotation.JsonProperty;

public class JsonCustomsInvoice {
    @JsonProperty(value = "recordNumber", required = false)
    public String RecordNumber;
    @JsonProperty(value = "customsId", required = false)
    public String CustomsId;
    @JsonProperty(value = "payNum", required = false)
    public String PayNum;
    @JsonProperty(value = "issueDate", required = false)
    public String IssueDate;
    @JsonProperty(value = "invoiceTaxAmount", required = false)
    public String InvoiceTaxAmount;
    @JsonProperty(value = "invoiceAmount", required = false)
    public String InvoiceAmount;
    @JsonProperty(value = "auditResult", required = false)
    public String AuditResult;
    @JsonProperty(value = "createTime", required = false)
    public String CreateTime;
    @JsonProperty(value = "creatorId", required = false)
    public String CreatorId;
    @JsonProperty(value = "periodId", required = false)
    public Integer PeriodId;
}