JsonCustomsInvoice.java 1016 Bytes
Newer Older
1 2
package pwc.taxtech.atms.dto.vatdto;

3 4
import com.fasterxml.jackson.annotation.JsonProperty;

5
public class JsonCustomsInvoice {
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
    @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;
22 23
    @JsonProperty(value = "creatorId", required = false)
    public String CreatorId;
24 25
    @JsonProperty(value = "periodId", required = false)
    public Integer PeriodId;
26
}