xiaoyong931011
2022-06-07 33cd99e2509c88ce838ec2c68f2d36de80e27a6c
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
package com.xcong.farmer.cms.modules.system.entity;
 
import com.baomidou.mybatisplus.annotation.TableName;
import com.xcong.farmer.cms.common.system.base.BaseEntity;
import lombok.Data;
 
/**
 * 栏目表
 */
@Data
@TableName("t_column")
public class ColumnEntity  extends BaseEntity {
    /**
     * 导航栏 - 默认上级类目ID
     */
    public static final Long PARENTID_DEFAULT = 0L;
 
    //栏目名称
    private String columnName;
    //栏目编码
    private String columnCode;
    //描述
    private String remark;
    //排序
    private Integer orderNum;
    //图片
    private String pic;
    //上级类目ID
    private Long parentId;
}