| 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; | 
|   | 
| } |