|
|
|
@@ -79,8 +79,7 @@ public class BusinessCircleBase extends TenantEntity { |
|
|
|
@TableField(exist = false) |
|
|
|
private String userIdStr; |
|
|
|
public String getUserIdStr(){ |
|
|
|
this.userIdStr = Long.toString(this.cUserId); |
|
|
|
return this.userIdStr; |
|
|
|
return Long.toString(cUserId); |
|
|
|
} |
|
|
|
@io.swagger.annotations.ApiModelProperty(value="c端会员id,与第三方对齐",name="cUserId") |
|
|
|
private Long cUserId; |
|
|
|
@@ -89,8 +88,7 @@ public class BusinessCircleBase extends TenantEntity { |
|
|
|
@TableField(exist = false) |
|
|
|
private String userPhoneStr; |
|
|
|
public String getUserPhoneStr(){ |
|
|
|
this.userPhoneStr = this.cUserPhone; |
|
|
|
return this.userPhoneStr; |
|
|
|
return cUserPhone; |
|
|
|
} |
|
|
|
private String cUserPhone; |
|
|
|
@TableField(exist = false) |
|
|
|
|