Helius
2022-07-04 9ef3d48a2878cd76890fc1e1d78734e27afb8ac3
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
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_navigation_bar")
public class NavigationBarEntity extends BaseEntity {
    /**
     * 导航栏 - 默认上级类目ID
     */
    public static final Long PARENTID_DEFAULT = 0L;
 
    //导航栏标题
    private String barName;
    //链接地址
    private String linkUrl;
    //描述
    private String remark;
    //排序
    private Integer orderNum;
    //图片
    private String pic;
    //上级类目ID
    private Long parentId;
    //所属ID
    private Long companyId;
 
}