linwe
2024-08-09 8b7258c9427882bb1798f1502eaa35184c6e374e
src/main/java/org/springblade/modules/task/mapper/TaskLabelReportingEventMapper.java
@@ -19,6 +19,7 @@
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.excel.TaskLabelReportingEventExcel;
import org.springblade.modules.task.vo.TaskLabelReportingEventVO;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
@@ -46,7 +47,6 @@
                                                     @Param("gridCodeList") List<String> gridCodeList);
   /**
    * 查询打金店报事
    *
@@ -62,4 +62,25 @@
    * @return 打金店报事集合
    */
   public List<TaskLabelReportingEventDTO> selectTaskLabelReportingEventList(TaskLabelReportingEventDTO taskLabelReportingEventDTO);
   /**
    * 导出二手交易信息
    *
    * @param taskLabelReportingEvent
    * @param regionChildCodesList
    * @param isAdministrator
    * @param gridCodeList
    * @return
    */
   List<TaskLabelReportingEventExcel> exportTaskLabelReportingEventList(@Param("taskLabelReportingEvent") TaskLabelReportingEventVO taskLabelReportingEvent,
                                                       @Param("regionChildCodesList") List<String> regionChildCodesList,
                                                       @Param("isAdministrator") Integer isAdministrator,
                                                       @Param("gridCodeList") List<String> gridCodeList);
   /**
    * 二手交易报事 自定义详情
    * @param taskLabelReportingEvent
    * @return
    */
    TaskLabelReportingEventVO getDetail(@Param("taskLabelReportingEvent") TaskLabelReportingEventVO taskLabelReportingEvent);
}