|  |  |  | 
|---|
|  |  |  | 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 签到记录表 | 
|---|
|  |  |  | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | public interface ActivitySignRecordDao extends BaseMapper<ActivitySignRecord>{ | 
|---|
|  |  |  |  | 
|---|
|  |  |  | ActivitySignRecord selectOneByActIdAndUserIdLikesignTime(@Param("actId")long actId, | 
|---|
|  |  |  | @Param("userId")Long userId, @Param("format")Date format); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | List<ActivitySignRecordVo> selectRecordByMonth(@Param("actId")Long actId, @Param("userId")Long userId, @Param("date") DateTime date); | 
|---|
|  |  |  | } | 
|---|