| | |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | @Mapper |
| | | public interface VolunteerActivityDao extends BaseMapper<VolunteerActivity> |
| | |
| | | * @param id |
| | | * @return |
| | | */ |
| | | VolunteerActivity queryById(@Param("id") String id); |
| | | VolunteerActivity queryById(@Param("id") String id,@Param("userId") String userId); |
| | | |
| | | /** |
| | | * 分页查询 |
| | |
| | | @Param("name") String name, |
| | | @Param("acState") String acState, |
| | | @Param("acType") String acType, |
| | | @Param("userId") String userId, |
| | | @Param("actityBeginTime") Date actityBeginTime, |
| | | @Param("actityEndTime") Date actityEndTime); |
| | | |
| | |
| | | |
| | | int deleteById(@Param("id") String id); |
| | | |
| | | List<VolunteerActivity> timedTaskList(); |
| | | |
| | | } |