| | |
| | | import cc.mrbird.febs.common.entity.BaseEntity; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | @Data |
| | | @TableName("mall_vip_benefits_details") |
| | | @ApiModel(value = "MallVipBenefitsDetails") |
| | | public class MallVipBenefitsDetails extends BaseEntity { |
| | | |
| | | /** |
| | | * 图片链接 |
| | | */ |
| | | @ApiModelProperty(value = "图片") |
| | | private String image; |
| | | |
| | | /** |
| | | * 是否可点击;1-是 2-否 |
| | | */ |
| | | @ApiModelProperty(value = "是否可点击") |
| | | private Integer isClick; |
| | | |
| | | /** |
| | | * 链接类型;1-链接 2-领取商品 3-优惠券 |
| | | */ |
| | | @ApiModelProperty(value = "1-链接 2-领取商品 3-优惠券") |
| | | private Integer linkType; |
| | | |
| | | /** |
| | | * 内容;根据linkType来的 |
| | | */ |
| | | @ApiModelProperty(value = "跳转的链接或者商品/优惠券的ID") |
| | | private String content; |
| | | |
| | | /** |