package com.xcong.farmer.cms.modules.system.dto; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; /** * @author wzy * @date 2022-07-07 **/ @Data @ApiModel(value = "ReleaseColumnDto", description = "发布栏目接收参数类") public class ReleaseColumnDto { @ApiModelProperty(value = "栏目ID", example = "1") private Long id; @ApiModelProperty(value = "是否编译子栏目和栏目下所有文章 1-是 ,2-否", example = "1") private Integer type; }