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
| package com.ruoyi.account.bean.dto.financial;
|
| import lombok.Data;
|
| /**
| * 科目账查询参数。
| */
| @Data
| public class FinLedgerQueryDto {
|
| /**
| * 科目编码(支持末级或指定科目)。
| */
| private String subjectCode;
|
| /**
| * 开始月份,格式:YYYY-MM。
| */
| private String startMonth;
|
| /**
| * 结束月份,格式:YYYY-MM。
| */
| private String endMonth;
| }
|
|