linwei
2024-02-20 3f6220488a79c5ebbd58e96fef1dee2c594eab37
src/main/java/org/springblade/modules/task/mapper/TaskLabelReportingEventMapper.java
@@ -16,7 +16,8 @@
 */
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;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
@@ -38,7 +39,27 @@
    * @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);
   /**
    * 查询打金店报事
    *
    * @param id 打金店报事ID
    * @return 打金店报事
    */
   public TaskLabelReportingEventDTO selectTaskLabelReportingEventById(Long id);
   /**
    * 查询打金店报事列表
    *
    * @param taskLabelReportingEventDTO 打金店报事
    * @return 打金店报事集合
    */
   public List<TaskLabelReportingEventDTO> selectTaskLabelReportingEventList(TaskLabelReportingEventDTO taskLabelReportingEventDTO);
}