Administrator
6 days ago e12b33379eccfeead532f677a99c7f9e41e34a0d
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
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;
 
import java.math.BigDecimal;
 
@Data
@TableName("mall_member_collection")
public class MallMemberCollection extends BaseEntity {
 
    private Long memberId;
 
    private Long goodsId;
 
    @TableField(exist = false)
    private String goodsName;
 
    @TableField(exist = false)
    private String thumb;
 
    @TableField(exist = false)
    private Integer isSale;
 
    @TableField(exist = false)
    private String presentPrice;
 
}