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_integral_goods * * @author czx * @date 2023-11-16 */ @Data @TableName("finance_integral_goods") public class FinanceIntegralGoods extends BusiBaseEntity { private static final long serialVersionUID=1L; /** $column.columnComment */ @TableId(type = IdType.ASSIGN_ID) private String id; /** $column.columnComment */ @Excel(name = "${comment}" , readConverterExp = "$column.readConverterExp()") private String typeId; /** 商品名称 */ @Excel(name = "商品名称") private String name; /** 商品关键字 */ @Excel(name = "商品关键字") private String keword; /** 商品描述 */ @Excel(name = "商品描述") private String description; /** 作者 */ @Excel(name = "作者") private String author; /** 商品封面图 */ @Excel(name = "商品封面图") private String indexImg; /** 商品图片 */ @Excel(name = "商品图片") private String showImg; /** 商品状态 */ @Excel(name = "商品状态") private Integer status; /** 商品排序 */ @Excel(name = "商品排序") private Integer sortNum; /** 点击量 */ @Excel(name = "点击量") private Integer lookNum; /** 点赞量 */ @Excel(name = "点赞量") private Integer likeNum; /** 所需积分 */ @Excel(name = "所需积分") private Integer price; /** 商品详情 */ @Excel(name = "商品详情") private String info; /** 库存 */ @Excel(name = "库存") private Integer stock; }