Browse Source

daochu

release_toaliyun_real
xhxu 4 years ago
parent
commit
88d09b9254
1 changed files with 8 additions and 8 deletions
  1. +8
    -8
      mallinkService/src/main/java/com/iformall/domain/po/BusinessCircleBase.java

+ 8
- 8
mallinkService/src/main/java/com/iformall/domain/po/BusinessCircleBase.java View File

@@ -77,20 +77,20 @@ public class BusinessCircleBase extends TenantEntity {


@Excel(name = "会员ID", width = 20, orderNum = "6") @Excel(name = "会员ID", width = 20, orderNum = "6")
@TableField(exist = false) @TableField(exist = false)
private Long userId;
public Long getUserId(){
this.userId = this.cUserId;
return this.userId;
private String userIdStr;
public String getUserIdStr(){
this.userIdStr = Long.toString(this.cUserId);
return this.userIdStr;
} }
@io.swagger.annotations.ApiModelProperty(value="c端会员id,与第三方对齐",name="cUserId") @io.swagger.annotations.ApiModelProperty(value="c端会员id,与第三方对齐",name="cUserId")
private Long cUserId; private Long cUserId;
private String cUserNickName; private String cUserNickName;
@Excel(name = "会员手机号", width = 20, orderNum = "7") @Excel(name = "会员手机号", width = 20, orderNum = "7")
@TableField(exist = false) @TableField(exist = false)
private String userPhone;
public String getUserPhone(){
this.userPhone = this.cUserPhone;
return this.userPhone;
private String userPhoneStr;
public String getUserPhoneStr(){
this.userPhoneStr = this.cUserPhone;
return this.userPhoneStr;
} }
private String cUserPhone; private String cUserPhone;
@TableField(exist = false) @TableField(exist = false)


Loading…
Cancel
Save