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.BusiBaseEntity;
|
|
/**
|
* 文章管理对象 finance_article
|
*
|
* @author czx
|
* @date 2023-11-16
|
*/
|
@Data
|
@TableName("finance_article")
|
public class FinanceArticle extends BusiBaseEntity {
|
|
private static final long serialVersionUID=1L;
|
|
/** $column.columnComment */
|
@TableId(type = IdType.ASSIGN_ID)
|
private String id;
|
|
/** 文章标题 */
|
@Excel(name = "文章标题")
|
private String title;
|
|
/** 文章作者 */
|
@Excel(name = "文章作者")
|
private String author;
|
|
/** 文章简介 */
|
@Excel(name = "文章简介")
|
private String blurb;
|
|
/** 文章类型 */
|
@Excel(name = "文章类型")
|
private String typeId;
|
|
/** 文章图片 */
|
@Excel(name = "文章图片")
|
private String imgUrl;
|
|
/** 内容 */
|
@Excel(name = "内容")
|
private String info;
|
|
/** 文章状态 */
|
@Excel(name = "文章状态")
|
private Integer status;
|
|
/** 是否首页显示 */
|
@Excel(name = "是否首页显示")
|
private Integer showIndex;
|
|
/** 文章排序 */
|
@Excel(name = "文章排序")
|
private Integer sortNum;
|
|
/** 点赞数 */
|
@Excel(name = "点赞数")
|
private Integer likeNum;
|
|
/** 浏览量 */
|
@Excel(name = "浏览量")
|
private Integer lookNum;
|
|
}
|