| | |
| | | |
| | | import java.time.LocalDate; |
| | | import java.util.Date; |
| | | import java.util.HashSet; |
| | | import java.util.List; |
| | | import java.util.Set; |
| | | |
| | | @Data |
| | | public class SalesLedgerDto { |
| | |
| | | private String salesContractNo; |
| | | private String customerContractNo; |
| | | private String projectName; |
| | | private String productCategory; |
| | | private Set<Long> ids; // |
| | | /** |
| | | * 是否开票 1-否 2-是 |
| | | */ |
| | | private Integer isInvoice; |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | private Date entryDate; |
| | | |
| | | private String entryDateStart; |
| | | private String entryDateEnd; |
| | | |
| | | |
| | | private String salesman; |
| | | private Long customerId; |
| | | private String customerName; |
| | |
| | | private List<String> tempFileIds; |
| | | private List<CommonFile> SalesLedgerFiles; |
| | | |
| | | private Integer Type; |
| | | private Integer type; |
| | | @ApiModelProperty(value = "签订日期") |
| | | private LocalDate executionDate; |
| | | |