|
|
@ -1,6 +1,7 @@ |
|
|
|
package com.gxwebsoft.shop.entity; |
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.IdType; |
|
|
|
import com.baomidou.mybatisplus.annotation.TableField; |
|
|
|
import com.baomidou.mybatisplus.annotation.TableId; |
|
|
|
import java.time.LocalDateTime; |
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat; |
|
|
@ -29,9 +30,33 @@ public class ShopUserReferee implements Serializable { |
|
|
|
@Schema(description = "推荐人ID") |
|
|
|
private Integer dealerId; |
|
|
|
|
|
|
|
@Schema(description = "分销商名称") |
|
|
|
@TableField(exist = false) |
|
|
|
private String dealerName; |
|
|
|
|
|
|
|
@Schema(description = "分销商头像") |
|
|
|
@TableField(exist = false) |
|
|
|
private String dealerAvatar; |
|
|
|
|
|
|
|
@Schema(description = "分销商手机号") |
|
|
|
@TableField(exist = false) |
|
|
|
private String dealerPhone; |
|
|
|
|
|
|
|
@Schema(description = "用户id(被推荐人)") |
|
|
|
private Integer userId; |
|
|
|
|
|
|
|
@Schema(description = "昵称") |
|
|
|
@TableField(exist = false) |
|
|
|
private String nickname; |
|
|
|
|
|
|
|
@Schema(description = "头像") |
|
|
|
@TableField(exist = false) |
|
|
|
private String avatar; |
|
|
|
|
|
|
|
@Schema(description = "手机号") |
|
|
|
@TableField(exist = false) |
|
|
|
private String phone; |
|
|
|
|
|
|
|
@Schema(description = "推荐关系层级(1,2,3)") |
|
|
|
private Integer level; |
|
|
|
|
|
|
|