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;
|
|
}
|