|
@ -23,6 +23,9 @@ import com.elink.esua.epdc.dto.UserDTO; |
|
|
import com.elink.esua.epdc.dto.UserPointResultDTO; |
|
|
import com.elink.esua.epdc.dto.UserPointResultDTO; |
|
|
import com.elink.esua.epdc.dto.UserPointsDTO; |
|
|
import com.elink.esua.epdc.dto.UserPointsDTO; |
|
|
import com.elink.esua.epdc.dto.epdc.form.*; |
|
|
import com.elink.esua.epdc.dto.epdc.form.*; |
|
|
|
|
|
import com.elink.esua.epdc.dto.epdc.form.EpdcUnauthorizedAmountFromDTO; |
|
|
|
|
|
import com.elink.esua.epdc.dto.epdc.form.EpdcUserGroupInviteFormDTO; |
|
|
|
|
|
import com.elink.esua.epdc.dto.epdc.form.EpdcWorkUserFromDTO; |
|
|
import com.elink.esua.epdc.dto.epdc.result.*; |
|
|
import com.elink.esua.epdc.dto.epdc.result.*; |
|
|
import com.elink.esua.epdc.entity.UserEntity; |
|
|
import com.elink.esua.epdc.entity.UserEntity; |
|
|
import org.apache.ibatis.annotations.Mapper; |
|
|
import org.apache.ibatis.annotations.Mapper; |
|
@ -286,6 +289,14 @@ public interface UserDao extends BaseDao<UserEntity> { |
|
|
* @Date 14:56 2020-06-01 |
|
|
* @Date 14:56 2020-06-01 |
|
|
**/ |
|
|
**/ |
|
|
EpdcAppRankingUserDTO selectCurrentUserRanking(EpdcAppUserRankingFormDTO formDto); |
|
|
EpdcAppRankingUserDTO selectCurrentUserRanking(EpdcAppUserRankingFormDTO formDto); |
|
|
|
|
|
/** |
|
|
|
|
|
* @describe: 通过手机号获取用户信息 |
|
|
|
|
|
* @author wangtong |
|
|
|
|
|
* @date 2021/9/23 16:39 |
|
|
|
|
|
* @params [dto] |
|
|
|
|
|
* @return com.elink.esua.epdc.commons.tools.utils.Result |
|
|
|
|
|
*/ |
|
|
|
|
|
UserDTO getUserByMobile(@Param("mobile") String mobile); |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* 获取当前用户的 用户等级排名 |
|
|
* 获取当前用户的 用户等级排名 |
|
@ -306,4 +317,12 @@ public interface UserDao extends BaseDao<UserEntity> { |
|
|
* @date 2020/8/3 13:43 |
|
|
* @date 2020/8/3 13:43 |
|
|
*/ |
|
|
*/ |
|
|
List<UserPointResultDTO> selectListPoints(Map<String, Object> params); |
|
|
List<UserPointResultDTO> selectListPoints(Map<String, Object> params); |
|
|
|
|
|
/** |
|
|
|
|
|
* @describe: 志愿组织模块获取用户列表 |
|
|
|
|
|
* @author wangtong |
|
|
|
|
|
* @date 2021/9/29 10:35 |
|
|
|
|
|
* @params [dto] |
|
|
|
|
|
* @return java.util.List<com.elink.esua.epdc.dto.UserDTO> |
|
|
|
|
|
*/ |
|
|
|
|
|
List<UserEntity> getUserListForVolunteerOrg(Map<String, Object> params); |
|
|
} |
|
|
} |
|
|