|
|
|
@@ -463,6 +463,9 @@ public class WxCUserBasicInfoController extends BaseController { |
|
|
|
@SystemControllerLog(description = "会员管理-根据手机号查询接口") |
|
|
|
public ResultData findByPhone(String phone) { |
|
|
|
logger.debug("[" + getIpAddr() + "] WxCUserBasicInfoController::findByPhone"); |
|
|
|
if (StringUtils.isEmpty(phone)) { |
|
|
|
return new ResultData(new ArrayList<WxCUserBasicInfo>()); |
|
|
|
} |
|
|
|
List<WxCUserBasicInfo> wxCUserBasicInfoList = wxCUserBasicInfoService.findByPhone(getTenantId(),phone); |
|
|
|
WxCUserBasicInfo wxCUserBasicInfo = new WxCUserBasicInfo(); |
|
|
|
if (wxCUserBasicInfoList != null && wxCUserBasicInfoList.size() > 0) { |
|
|
|
|