huminmin
2026-04-25 cea4e4e9c6dad4d4f1b04b750ffca73cc252b22f
src/main/java/com/ruoyi/sales/dto/SalesLedgerDto.java
@@ -13,12 +13,18 @@
@Data
public class SalesLedgerDto {
    private Long id;
    private String salesContractNo;
    private String customerContractNo;
    private String projectName;
//    @JsonFormat(pattern = "yyyy-MM-dd")
    private String entryDate;
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date entryDate;
    private String entryDateStart;
    private String entryDateEnd;
    private String salesman;
    private Long customerId;
    private String customerName;
@@ -41,7 +47,7 @@
    private List<String> tempFileIds;
    private List<CommonFile> SalesLedgerFiles;
    private Integer Type;
    private Integer type;
    @ApiModelProperty(value = "签订日期")
    private LocalDate executionDate;
@@ -49,4 +55,10 @@
    @ApiModelProperty(value = "付款方式")
    private String paymentMethod;
    @ApiModelProperty(value = "交货日期")
    private LocalDate deliveryDate;
    @ApiModelProperty(value = "是否生产")
    private boolean produce;
}