ustcyc
2025-03-31 8ff9c87a153e1c8b7c2261d7e4331f3a5bc7ce21
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 String type;
 
    /**
     * 标题
     */
    private String title;
}