fix
Helius
2022-06-23 6da21a3cbc057baaaf882ebc06b4438ddf822ef0
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
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;
    //所属ID
    private Long companyId;
}