| | |
| | | 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; |
| | | |
| | |
| | | `DELETE_FLAG` int(11) DEFAULT '0' COMMENT '删除标识 0-未删除 1-已删除', |
| | | */ |
| | | private Long memberId; |
| | | //用户昵称 |
| | | @TableField(exist = false) |
| | | private String memberName; |
| | | |
| | | private Integer sourceType; |
| | | private Long sourceId; |
| | | //活动名称 |
| | | @TableField(exist = false) |
| | | private String activityName; |
| | | |
| | | private Long sourceOptionId; |
| | | //选项名称 |
| | | @TableField(exist = false) |
| | | private String optionName; |
| | | |
| | | private Integer type; |
| | | private Integer deleteFlag; |
| | | |