|
|
|
@@ -76,10 +76,22 @@ public class BusinessCircleBase extends TenantEntity { |
|
|
|
private WxMerchant merchant; |
|
|
|
|
|
|
|
@Excel(name = "会员ID", width = 20, orderNum = "6") |
|
|
|
@TableField(exist = false) |
|
|
|
private Long userId; |
|
|
|
public Long getUserId(){ |
|
|
|
userId = cUserId; |
|
|
|
return userId; |
|
|
|
} |
|
|
|
@io.swagger.annotations.ApiModelProperty(value="c端会员id,与第三方对齐",name="cUserId") |
|
|
|
private Long cUserId; |
|
|
|
private String cUserNickName; |
|
|
|
@Excel(name = "会员手机号", width = 20, orderNum = "7") |
|
|
|
@TableField(exist = false) |
|
|
|
private String userPhone; |
|
|
|
public String getUserPhone(){ |
|
|
|
userPhone = cUserPhone; |
|
|
|
return userPhone; |
|
|
|
} |
|
|
|
private String cUserPhone; |
|
|
|
@TableField(exist = false) |
|
|
|
private WxCUserBasicInfo basicInfo; |
|
|
|
|