Administrator
6 days ago ec707650a0a1a0bd3a5fc470cb67bb4b01ddca13
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
package cc.mrbird.febs.mall.entity;
 
import cc.mrbird.febs.common.entity.BaseEntity;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
@Data
@TableName("mall_member_footprint")
public class MallMemberFootprint extends BaseEntity {
 
    private Long memberId;
 
    private Long goodsId;
 
 
    @TableField(exist = false)
    private String goodsName;
 
    @TableField(exist = false)
    private String thumb;
 
    @TableField(exist = false)
    private String presentPrice;
 
    @TableField(exist = false)
    private Integer isSale;
 
}