ifx
Helius
2022-08-22 62d3f103086822a1bc51971a0733cb3d9b756bc0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.xcong.farmer.cms.modules.system.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import javax.validation.constraints.NotNull;
 
/**
 * @author wzy
 * @date 2022-08-19
 **/
@Data
@ApiModel(value = "GroupInfoListDto", description = "分组列表查询接口接收参数")
public class GroupInfoListDto extends CommonPageDto {
 
    @NotNull(message = "参数错误")
    @ApiModelProperty(value = "类型 1-友情链接 2-广告")
    private Integer type;
 
}