叶君翔 il y a 3 ans
Parent
commit
a6f07f04fc

+ 6 - 4
lb-module/src/main/java/com/ydd/module/mapper/MerchantMapper.java

@@ -1,13 +1,15 @@
 package com.ydd.module.mapper;
 
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
 import com.baomidou.mybatisplus.core.metadata.IPage;
 import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
 import com.ydd.module.domain.Merchant;
-import com.baomidou.mybatisplus.core.mapper.BaseMapper;
-import com.ydd.module.dto.*;
+import com.ydd.module.dto.DadaDspMerchantInfoDto;
+import com.ydd.module.dto.DadaDspMerchantListQuery;
+import com.ydd.module.dto.MerchantExportDto;
+import com.ydd.module.dto.SystemMerchantDto;
 import org.apache.ibatis.annotations.Param;
 
-import java.util.Date;
 import java.util.List;
 
 /**
@@ -32,7 +34,7 @@ public interface MerchantMapper extends BaseMapper<Merchant> {
 
     List<Integer> findIdsByAgentIdLists(@Param("agentIds") List<Long> agentIds);
 
-    List<Merchant> selectMerchantList(@Param("params")SystemMerchantDto merchantDto, @Param("agentIds")List<Long> agentIds, @Param("agentList")List<Long> agentList);
+    List<Merchant> selectMerchantList(@Param("params") SystemMerchantDto merchantDto, @Param("agentIds")List<Long> agentIds, @Param("agentList")List<Long> agentList);
 
     List<Long> listMerchantIds(@Param("agentIds") List<Long> agentIds);