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 describe;
|
//排序
|
private Integer orderNum;
|
//图片
|
private String pic;
|
//上级类目ID
|
private Long parentId;
|
|
}
|