init
This commit is contained in:
@@ -17,12 +17,12 @@ import java.util.List;
|
||||
*/
|
||||
public interface GuardTotalMapper extends BaseMapper<GuardTotal> {
|
||||
|
||||
List<GuardTotalDTO> selectGuardTotal(@Param("fromUserId") Long fromUserId, @Param("limit") Integer limit);
|
||||
List<GuardTotalDTO> selectGuardTotal(@Param("toUserId") Long toUserId, @Param("limit") Integer limit);
|
||||
|
||||
void incs(@Param("fromUserId") Long fromUserId, @Param("toUserId") Long toUserId, @Param("guardNum") Long guardNum, @Param("guardValue") Long guardValue);
|
||||
|
||||
Long guardCount(@Param("fromUserId") Long fromUserId);
|
||||
Long guardPersonCount(@Param("fromUserId") Long fromUserId);
|
||||
Long guardCount(@Param("toUserId") Long toUserId);
|
||||
Long guardPersonCount(@Param("toUserId") Long toUserId);
|
||||
|
||||
Page<GuardListPageVo> userGuardPage(@Param("build") Page<Object> build, @Param("userId") Long userId);
|
||||
Page<GuardListPageVo> userGuardPage(@Param("build") Page<Object> build, @Param("toUserId") Long toUserId);
|
||||
}
|
||||
|
||||
@@ -18,4 +18,5 @@ public interface UserGiftMapper extends BaseMapper<UserGift> {
|
||||
List<UserGiftIndexVo> selectGiftList(@Param("userId") Long userId);
|
||||
|
||||
long countGiftNum(@Param("fromUid") Long fromUid, @Param("toUid") Long toUid);
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user