fix
Helius
2022-07-04 aa01829055f7711f6b46c40632997641e1a9e38d
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
package com.xcong.farmer.cms.modules.system.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "AdminSeeColumnInfoVo", description = "栏目返回")
public class AdminSeeColumnInfoVo {
 
    private Long id;
 
    @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;
 
    @ApiModelProperty(value = "列表页模板")
    private String listTemplate;
 
    @ApiModelProperty(value = "文章页模板")
    private String articleTemplate;
 
    @ApiModelProperty(value = "栏目类型 1-普通栏目 2-标题栏目")
    private Integer type;
 
    @ApiModelProperty(value = "若栏目类型为标题类型 1-链接到内容 2-链接到栏目 3-外部地址")
    private Integer targetType;
 
    @ApiModelProperty(value = "目标地址")
    private String targetUrl;
 
    @ApiModelProperty(value = "目标描述")
    private String targetName;
 
    @ApiModelProperty(value = "是否为导航 1-是 2-否")
    private Integer isNav;
 
}