| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- package com.zhongzheng.entity;
- import com.baomidou.mybatisplus.annotation.IdType;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.baomidou.mybatisplus.annotation.TableName;
- import lombok.Data;
- import lombok.NoArgsConstructor;
- import lombok.experimental.Accessors;
- import java.io.Serializable;
- @Data
- @NoArgsConstructor
- @Accessors(chain = true)
- @TableName("official_menu")
- public class OfficialMenu implements Serializable {
- /**
- *
- */
- @TableId(value = "menu_id",type = IdType.AUTO)
- private Long menuId;
- /**
- * 父级ID(为0时是一级)
- */
- private Long parentId;
- /**
- * 菜单名称
- */
- private String name;
- /**
- * 类型:1属于新闻大分类,可用后台吴加分类,2小类,首面不分类为0,配置不维护
- */
- private Integer type;
- /**
- * 用途 1文章 2列表
- */
- private Integer showType;
- /**
- * 标识: 1有 0没有
- */
- private Integer sign;
- /**
- * 排序字段
- */
- private Integer sortNumber;
- /**
- * 外链跳转地址
- */
- private String webUrl;
- /**
- * 菜单选中值
- */
- private String curValue;
- /**
- * 状态(1正常 0停用)
- */
- private Integer status;
- /**
- * 创建时间
- */
- private Long createTime;
- /**
- * 更新时间
- */
- private Long updateTime;
- }
|