Commit e451e843 by 徐高华

手机号

parent 5b9fd48b
...@@ -11,14 +11,14 @@ public class KeyDataLinkBO implements Serializable{ ...@@ -11,14 +11,14 @@ public class KeyDataLinkBO implements Serializable{
private String unionid; private String unionid;
private Long hmId; private Long hmId;
private Long linkId; private Long linkId;
private String phone ; private String mobile ;
public String getPhone() { public String getMobile() {
return phone; return mobile;
} }
public void setPhone(String phone) { public void setMobile(String mobile) {
this.phone = phone; this.mobile = mobile;
} }
public String getUnionid() { public String getUnionid() {
......
...@@ -377,7 +377,7 @@ public class HmLinkApiServiceImpl implements HmLinkApiService { ...@@ -377,7 +377,7 @@ public class HmLinkApiServiceImpl implements HmLinkApiService {
bo.setLinkId(linkId); bo.setLinkId(linkId);
bo.setHmId(hm.getHmId()); bo.setHmId(hm.getHmId());
if(StringUtils.isNotBlank(mixPhone) && StringUtils.isNotBlank(mobile)) { if(StringUtils.isNotBlank(mixPhone) && StringUtils.isNotBlank(mobile)) {
bo.setPhone(mobile); bo.setMobile(mobile);
} }
String dthmKey = this.keyDataService.saveDataForLink(enterpriseId, bo); String dthmKey = this.keyDataService.saveDataForLink(enterpriseId, bo);
remarkMap.put("dthmKey", dthmKey); remarkMap.put("dthmKey", dthmKey);
......
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