Commit 539c017e authored by lee_mingzhu's avatar lee_mingzhu Committed by minminyan

merge master

parent e592beb4
...@@ -33,6 +33,7 @@ import org.springframework.beans.factory.annotation.Autowired; ...@@ -33,6 +33,7 @@ import org.springframework.beans.factory.annotation.Autowired;
import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletRequest;
import java.sql.Timestamp; import java.sql.Timestamp;
import java.text.ParseException; import java.text.ParseException;
import java.util.List;
import java.util.Random; import java.util.Random;
/** /**
...@@ -245,6 +246,51 @@ public class MotanUserServiceImpl implements UserMotanService, IBaseController{ ...@@ -245,6 +246,51 @@ public class MotanUserServiceImpl implements UserMotanService, IBaseController{
userDetailService.updateUserQQ(userId, qq); userDetailService.updateUserQQ(userId, qq);
} }
@Override
public UserSysResult<List<XContact>> findContactsByUserId(Long aLong) {
return null;
}
@Override
public UserSysResult<List<XContact>> saveContacts(Long aLong, List<XContact> list) {
return null;
}
@Override
public UserSysResult<XAddress> findAddressByUserId(Long aLong) {
return null;
}
@Override
public UserSysResult<XAddress> saveAddress(XAddress xAddress) {
return null;
}
@Override
public UserSysResult<XUserExtInfo> updateUserExtInfo(XUserExtInfo xUserExtInfo) {
return null;
}
@Override
public UserSysResult<String> queryOpenIdByXyqbUserId(Long aLong) {
return null;
}
@Override
public UserSysResult<Boolean> disableUser(Long aLong) {
return null;
}
@Override
public UserSysResult<String> queryOpenIdByPhoneNo(String s) {
return null;
}
@Override
public UserSysResult<UserRegisterTrace> findRegisterTraceByPhoneNo(String s) {
return null;
}
/** /**
* 封装返回结果. * 封装返回结果.
* @param t * @param t
......
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