package com.gear.finance.domain;
|
|
import com.gear.common.annotation.Excel;
|
import lombok.Data;
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.gear.common.core.domain.BusiTreeEntity;
|
|
/**
|
* 文章类型对象 finance_article_type
|
*
|
* @author czx
|
* @date 2023-11-16
|
*/
|
@Data
|
@TableName("finance_article_type")
|
public class FinanceArticleType extends BusiTreeEntity {
|
|
private static final long serialVersionUID=1L;
|
|
/** $column.columnComment */
|
@TableId(type = IdType.ASSIGN_ID)
|
private String id;
|
|
/** 分类名称 */
|
@Excel(name = "分类名称")
|
private String name;
|
|
/** 图标 */
|
@Excel(name = "图标")
|
private String imgUrl;
|
|
/** 排序 */
|
@Excel(name = "排序")
|
private Integer sortNum;
|
|
/** 首页显示 */
|
@Excel(name = "首页显示")
|
private Integer showIndex;
|
|
/** 底部显示 */
|
@Excel(name = "底部显示")
|
private Integer showBottom;
|
|
/** 导航显示 */
|
@Excel(name = "导航显示")
|
private Integer showNavigation;
|
|
/** 状态 */
|
@Excel(name = "状态")
|
private Integer status;
|
|
}
|