fix
Hentua
2023-04-20 9bd759f5a7ad5fe0b47105efd7cacf3f4bf7e9a8
src/main/java/cc/mrbird/febs/mall/mapper/MallScoreSignRecordMapper.java
@@ -1,10 +1,17 @@
package cc.mrbird.febs.mall.mapper;
import cc.mrbird.febs.mall.dto.ApiMallScoreSignRecordDto;
import cc.mrbird.febs.mall.entity.MallScoreSignRecord;
import cc.mrbird.febs.mall.vo.ApiMallScoreSignRecordVo;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import org.apache.ibatis.annotations.Param;
public interface MallScoreSignRecordMapper extends BaseMapper<MallScoreSignRecord> {
    MallScoreSignRecord selectRecentSignRecord(@Param("memberId") Long memberId);
    IPage<ApiMallScoreSignRecordVo> selectApiOrderListInPage(IPage<ApiMallScoreSignRecordVo> page, @Param("record") ApiMallScoreSignRecordDto apiMallScoreSignRecordDto);
    Integer selectCountByMemberId(@Param("memberId")Long id);
}