Commit eb9c5fec authored by 李健华's avatar 李健华

小程序注册增加来源

parent 571955f8
...@@ -43,6 +43,9 @@ public class CustomerInfoEntity extends PartitionEntity implements Serializable ...@@ -43,6 +43,9 @@ public class CustomerInfoEntity extends PartitionEntity implements Serializable
@Column(name = "NICK_NAME", nullable = true, length = 50) @Column(name = "NICK_NAME", nullable = true, length = 50)
private String nickName; private String nickName;
@Column(name = "APP_NAME", nullable = true, length = 50)
private String appName;
@Column(name = "CITY", nullable = true, length = 36) @Column(name = "CITY", nullable = true, length = 36)
private String city; private String city;
...@@ -286,4 +289,12 @@ public class CustomerInfoEntity extends PartitionEntity implements Serializable ...@@ -286,4 +289,12 @@ public class CustomerInfoEntity extends PartitionEntity implements Serializable
public void setId(long id) { public void setId(long id) {
this.id = id; this.id = id;
} }
public String getAppName() {
return appName;
}
public void setAppName(String appName) {
this.appName = appName;
}
} }
...@@ -149,6 +149,7 @@ public class OauthLoginInfoServiceImpl implements IOauthLoginInfoService { ...@@ -149,6 +149,7 @@ public class OauthLoginInfoServiceImpl implements IOauthLoginInfoService {
customerInfo.setInstitutionId(institutionId); customerInfo.setInstitutionId(institutionId);
customerInfo.setAvatarUrl(appletParamEntry.getAvatarUrl()); customerInfo.setAvatarUrl(appletParamEntry.getAvatarUrl());
customerInfo.setNickName(appletParamEntry.getNickName()); customerInfo.setNickName(appletParamEntry.getNickName());
customerInfo.setAppName(appletParamEntry.getAppName());
customerInfo.setCity(appletParamEntry.getCity()); customerInfo.setCity(appletParamEntry.getCity());
customerInfo.setCountry(appletParamEntry.getCountry()); customerInfo.setCountry(appletParamEntry.getCountry());
customerInfo.setProvince(appletParamEntry.getProvince()); customerInfo.setProvince(appletParamEntry.getProvince());
......
This source diff could not be displayed because it is too large. You can view the blob instead.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment