liyong
19 小时以前 dbaa984c77193d296a1a097fd7cf9e2e2bc45d8f
src/main/java/com/ruoyi/sales/excel/InvoiceLedgerExcelDto.java
@@ -11,6 +11,7 @@
import org.springframework.format.annotation.DateTimeFormat;
import java.math.BigDecimal;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.util.List;
@@ -19,6 +20,9 @@
    @Excel(name = "销售合同号")
    private String salesContractNo;
    @Excel(name = "")
    private String customerContractNo;
    @Excel(name = "客户名称")
    private String customerName;
@@ -36,7 +40,10 @@
    private String invoicePerson;
    @Excel(name =  "开票时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private LocalDateTime invoiceDate;
    @JsonFormat(pattern = "yyyy-MM-dd")
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    private LocalDate invoiceDate;
    @Excel(name =  "发票")
    private String invoiceFileName;
}