package com.matrix.system.activity.dao; import cn.hutool.core.date.DateTime; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.matrix.system.activity.entity.ActivitySignRecord; import com.matrix.system.shopXcx.api.vo.ActivitySignRecordVo; import org.apache.ibatis.annotations.Param; import java.util.Date; import java.util.List; /** * @description 签到记录表 * @author yourName * @date 2021-03-31 16:57 */ public interface ActivitySignRecordDao extends BaseMapper{ ActivitySignRecord selectOneByActIdAndUserIdLikesignTime(@Param("actId")long actId, @Param("userId")Long userId, @Param("format")Date format); List selectRecordByMonth(@Param("actId")Long actId, @Param("userId")Long userId, @Param("date") DateTime date); List selectListByActIdAndUserIdLikesignTime(@Param("actId")long actId, @Param("userId")Long userId, @Param("format")Date format); }