|
|
@@ -12,7 +12,6 @@ import org.springframework.transaction.annotation.Transactional;
|
|
|
|
|
|
import com.goafanti.app.bo.UserBasicInfo;
|
|
|
import com.goafanti.common.constant.AFTConstants;
|
|
|
-import com.goafanti.common.dao.JpushEasemobAccountMapper;
|
|
|
import com.goafanti.common.dao.OrganizationIdentityMapper;
|
|
|
import com.goafanti.common.dao.UserIdentityMapper;
|
|
|
import com.goafanti.common.dao.UserMapper;
|
|
|
@@ -20,11 +19,9 @@ import com.goafanti.common.model.User;
|
|
|
import com.goafanti.core.mybatis.BaseMybatisDao;
|
|
|
import com.goafanti.core.mybatis.page.Pagination;
|
|
|
import com.goafanti.core.shiro.token.TokenManager;
|
|
|
-import com.goafanti.user.bo.ClientListBo;
|
|
|
import com.goafanti.user.bo.OrgUnitNames;
|
|
|
import com.goafanti.user.bo.UserBaseBo;
|
|
|
import com.goafanti.user.bo.UserDownLoadBo;
|
|
|
-import com.goafanti.user.bo.UserIdentityBo;
|
|
|
import com.goafanti.user.bo.UserNames;
|
|
|
import com.goafanti.user.bo.UserPageHomeBo;
|
|
|
import com.goafanti.user.bo.UserPartnerDetailBo;
|
|
|
@@ -226,6 +223,14 @@ public class UserServiceImpl extends BaseMybatisDao<UserMapper> implements UserS
|
|
|
public Integer selectByMobieAndTypeCount(String mobile ) {
|
|
|
return userMapper.selectByMobieAndTypeCount(mobile);
|
|
|
}
|
|
|
+ @Override
|
|
|
+ public Pagination<User> userInfo(User user, Integer pageNo, Integer pageSize) {
|
|
|
+ Map<String,Object> map = new HashMap<String, Object>();
|
|
|
+ map.put("username", "");
|
|
|
+ map.put("mobile", "");
|
|
|
+ map.put("type", "");
|
|
|
+ return null;
|
|
|
+ }
|
|
|
|
|
|
|
|
|
|