zss
昨天 08b7e2e5a92b751c93d8f5cafdf542cd9476c252
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.ruoyi.purchase.dto;
 
import lombok.Data;
 
@Data
public class PaymentLedgerDto {
 
    // 供应商名称
    private String supplierName;
 
    // 开始日期
    private String startDate;
 
    // 结束日期
    private String endDate;
}