1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| package com.zhitan.saving.domain.dto;
|
| import io.swagger.annotations.ApiModel;
| import lombok.Data;
|
| /**
| * @author Geoffrey
| * @date 2025/01/13
| */
| @Data
| @ApiModel(value = "PoliciesRegulationsManagementPageDTO", description = "政策法规-列表查询Dto")
| public class PoliciesRegulationsManagementPageDTO {
|
| /**
| * 类型
| */
| private Integer type;
|
| /**
| * 标题
| */
| private String title;
| }
|
|