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