|
|
@ -17,8 +17,12 @@ import java.util.List; |
|
|
|
public interface PointsService { |
|
|
|
|
|
|
|
/** |
|
|
|
* @Description: 当前登录用户 积分记录接口 |
|
|
|
* @Param: [userDetail, dto] |
|
|
|
* 当前登录用户 积分记录接口 |
|
|
|
* |
|
|
|
* @param formDto |
|
|
|
* param pageIndex 必选 页码 |
|
|
|
* param pageSize 必选 页容量 |
|
|
|
* @param userDetail 必选 获取用户ID |
|
|
|
* @return: com.elink.esua.epdc.commons.tools.utils.Result<java.util.List<com.elink.esua.epdc.dto.result.EpdcAppPointsRecordResultDTO>> |
|
|
|
* @Author: zy |
|
|
|
* @Date: 2020-04-29 |
|
|
@ -26,8 +30,12 @@ public interface PointsService { |
|
|
|
Result<List<EpdcAppPointsRecordResultDTO>> listPointsRecord(TokenDto userDetail, EpdcAppPointsRecordFormDTO formDto); |
|
|
|
|
|
|
|
/** |
|
|
|
* @Description: 积分排行接口(0 周排行、1 月排行) |
|
|
|
* @Param: [formDto] |
|
|
|
* 积分排行接口(0 周排行、1 月排行) |
|
|
|
* |
|
|
|
* @param formDto |
|
|
|
* param pageIndex 必选 页码 |
|
|
|
* param pageSize 必选 页容量 |
|
|
|
* param rankingType 必选 排名方式:0-周,1-月 |
|
|
|
* @return: com.elink.esua.epdc.commons.tools.utils.Result<java.util.List<com.elink.esua.epdc.dto.result.EpdcAppPointsRankingResultDTO>> |
|
|
|
* @Author: zy |
|
|
|
* @Date: 2020-04-30 |
|
|
|