| | |
| | | */ |
| | | package org.springblade.modules.task.mapper; |
| | | |
| | | import io.lettuce.core.dynamic.annotation.Param; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springblade.modules.task.dto.TaskLabelReportingEventDTO; |
| | | import org.springblade.modules.task.entity.TaskLabelReportingEventEntity; |
| | | import org.springblade.modules.task.vo.TaskLabelReportingEventVO; |
| | |
| | | * @param taskLabelReportingEvent |
| | | * @return |
| | | */ |
| | | List<TaskLabelReportingEventVO> selectTaskLabelReportingEventPage(IPage page,TaskLabelReportingEventVO taskLabelReportingEvent); |
| | | List<TaskLabelReportingEventVO> selectTaskLabelReportingEventPage(IPage page, |
| | | @Param("taskLabelReportingEvent") TaskLabelReportingEventVO taskLabelReportingEvent, |
| | | @Param("regionChildCodesList") List<String> regionChildCodesList, |
| | | @Param("isAdministrator") Integer isAdministrator, |
| | | @Param("gridCodeList") List<String> gridCodeList); |
| | | |
| | | |
| | | |