com.gccloud.starter.common.module.notice.dto.SysNoticeSearchDTO Maven / Gradle / Ivy
package com.gccloud.starter.common.module.notice.dto;
import com.gccloud.starter.common.dto.SearchDTO;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
/**
* 公告分页查询
*
* @author renxx
* @data 2021/9/9 15:49
*/
@Data
public class SysNoticeSearchDTO extends SearchDTO {
@ApiModelProperty(notes = "状态搜索条件,0在线,1下线,2草稿,")
private Integer status;
@ApiModelProperty(notes = "公告类型,业务字典设置")
private Integer type;
}