|  |  | 
 |  |  | package com.ruoyi.sales.dto; | 
 |  |  |  | 
 |  |  | import com.baomidou.mybatisplus.annotation.TableField; | 
 |  |  | import com.fasterxml.jackson.annotation.JsonFormat; | 
 |  |  | import com.ruoyi.framework.aspectj.lang.annotation.Excel; | 
 |  |  | import com.ruoyi.sales.pojo.ReceiptPayment; | 
 |  |  | import io.swagger.annotations.ApiModelProperty; | 
 |  |  | import lombok.Data; | 
 |  |  | import org.springframework.format.annotation.DateTimeFormat; | 
 |  |  |  | 
 |  |  | import java.math.BigDecimal; | 
 |  |  | import java.time.LocalDate; | 
 |  |  | import java.util.Date; | 
 |  |  |  | 
 |  |  | @Data | 
 |  |  | public class ReceiptPaymentDto extends ReceiptPayment { | 
 |  |  | 
 |  |  |     @Excel(name = "客户名称") | 
 |  |  |     private String customerName; | 
 |  |  |  | 
 |  |  |     @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8") | 
 |  |  |     @DateTimeFormat(pattern = "yyyy-MM-dd") | 
 |  |  |     @Excel(name = "开票日期",width = 30,dateFormat = "yyyy-MM-dd") | 
 |  |  |     @ApiModelProperty(value = "开票日期") | 
 |  |  |     private Date invoiceDate; | 
 |  |  |  | 
 |  |  |     @TableField(exist = false) | 
 |  |  |     private String invoiceDateStart; | 
 |  |  |     @TableField(exist = false) | 
 |  |  |     private String invoiceDateEnd; | 
 |  |  |  | 
 |  |  |     @ApiModelProperty(value = "查询文本") | 
 |  |  |     private String searchText; | 
 |  |  |  |