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_banner
|
*
|
* @author czx
|
* @date 2023-11-16
|
*/
|
@Data
|
@TableName("finance_banner")
|
public class FinanceBanner 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 img;
|
|
/** 类型 */
|
@Excel(name = "类型")
|
private Integer type;
|
|
/** $column.columnComment */
|
@Excel(name = "${comment}" , readConverterExp = "$column.readConverterExp()")
|
private String info;
|
|
/** 状态 */
|
@Excel(name = "状态")
|
private Integer status;
|
|
/** 排序 */
|
@Excel(name = "排序")
|
private Integer sortNum;
|
|
}
|