2 天以前 f93a8f3d091f1e9d1b9c2df246ad39df0e14cfdd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package com.ruoyi.account.bean.dto.financial;
 
import lombok.Data;
 
import java.time.LocalDate;
 
/**
 * 凭证分页查询参数。
 */
@Data
public class FinVoucherPageDto {
 
    /**
     * 凭证字号(模糊匹配)。
     */
    private String voucherNo;
 
    /**
     * 制单人。
     */
    private String creator;
 
    /**
     * 凭证状态。
     */
    private String status;
 
    /**
     * 开始日期(含)。
     */
    private LocalDate startDate;
 
    /**
     * 结束日期(含)。
     */
    private LocalDate endDate;
}