| | |
| | | package cc.mrbird.febs.vip.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.util.List; |
| | | |
| | | @Data |
| | | @TableName("mall_vip_config") |
| | |
| | | * 指定商品ID |
| | | */ |
| | | private Long targetId; |
| | | |
| | | @TableField(exist = false) |
| | | private String targetName; |
| | | |
| | | @TableField(exist = false) |
| | | private List<MallVipBenefits> benefits; |
| | | |
| | | @TableField(exist = false) |
| | | private String benefitsIds; |
| | | |
| | | @TableField(exist = false) |
| | | private List<Long> benefitsIdList; |
| | | } |