zj
2025-01-06 0e7b38c2b3af72ea2a7f8a2fcbaad4d78e2c1977
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
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;
 
}