| | |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.time.LocalDate; |
| | | import java.time.LocalDateTime; |
| | | import java.util.List; |
| | | |
| | |
| | | |
| | | @Excel(name = "销售合同号") |
| | | private String salesContractNo; |
| | | |
| | | @Excel(name = "") |
| | | private String customerContractNo; |
| | | |
| | | @Excel(name = "客户名称") |
| | | private String customerName; |
| | |
| | | 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; |
| | | } |