1
yuan
2026-08-03 0cd0fe4aeb19ebb79a3fc2d8e15d187bf6cfe82e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.ruoyi.account.bean.dto.financial;
 
import lombok.Data;
 
import java.util.List;
 
/**
 * 批量ID请求参数。
 */
@Data
public class FinIdBatchDto {
 
    /**
     * ID集合。
     */
    private List<Long> ids;
}