| | |
| | | package com.xcong.farmer.cms.modules.system.entity; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.xcong.farmer.cms.common.system.base.BaseEntity; |
| | | import lombok.Data; |
| | | import org.tron.trident.abi.datatypes.Int; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 栏目表 |
| | |
| | | // 目标类型 1-链接到文章 2-链接到栏目 3-外部链接 |
| | | private Integer targetType; |
| | | |
| | | // 内容类型 1:文章 2:图片 3:文件 4:音频 |
| | | private Integer contentType; |
| | | |
| | | // 目标地址 (外部地址http/https开头 文章ID/栏目ID) |
| | | private String targetUrl; |
| | | |
| | | // 是否为导航 1-是 2-否 |
| | | private Integer isNav; |
| | | |
| | | // 栏目目录 |
| | | private String path; |
| | | |
| | | @TableField(exist = false) |
| | | private List<Long> ids; |
| | | } |