xiaoyong931011
2022-06-10 93e281b3cc60c8d24a0ed5547d3d399c03f9bab6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package com.xcong.farmer.cms.modules.system.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "AdminAddColumnDto", description = "参数接收类")
public class AdminAddColumnDto {
 
    @ApiModelProperty(value = "栏目名称")
    private String columnName;
 
    @ApiModelProperty(value = "栏目编码")
    private String columnCode;
 
    @ApiModelProperty(value = "描述")
    private String remark;
 
    @ApiModelProperty(value = "排序")
    private Integer orderNum;
 
    @ApiModelProperty(value = "图片")
    private String pic;
 
    @ApiModelProperty(value = "上级类目ID")
    private Long parentId;
 
}