This commit is contained in:
dute7liang
2023-12-31 16:09:56 +08:00
parent d1a59f2d4a
commit 0c1fc3cada
230 changed files with 662 additions and 580 deletions

View File

@@ -0,0 +1,21 @@
package com.ruoyi.cai.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.cai.domain.UserGift;
import com.ruoyi.cai.dto.app.vo.index.UserGiftIndexVo;
import org.apache.ibatis.annotations.Param;
import java.util.List;
/**
* 礼物记录Mapper接口
*
* @author 77
* @date 2023-12-23
*/
public interface UserGiftMapper extends BaseMapper<UserGift> {
List<UserGiftIndexVo> selectGiftList(@Param("userId") Long userId);
long countGiftNum(@Param("fromUid") Long fromUid, @Param("toUid") Long toUid);
}