| | |
| | | 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; |
| | | |
| | | /** |
| | | * 栏目表 |
| | |
| | | |
| | | // 栏目目录 |
| | | private String path; |
| | | |
| | | @TableField(exist = false) |
| | | private List<Long> ids; |
| | | |
| | | /** |
| | | * 更新前栏目ID |
| | | */ |
| | | private Long beforeParentId; |
| | | |
| | | /** |
| | | * 更新前栏目编码 |
| | | */ |
| | | private String beforeColumnCode; |
| | | |
| | | /** |
| | | * 发布状态 1-已发布 2-未发布 |
| | | */ |
| | | private Integer releaseState; |
| | | } |