update 财务中心查询接口新增字段、增加搜索

This commit is contained in:
Lemon
2023-09-16 13:45:22 +08:00
parent d869c47282
commit e524a81493
8 changed files with 168 additions and 40 deletions

View File

@@ -1,6 +1,8 @@
package com.jsowell.pile.mapper;
import com.jsowell.pile.domain.PileMerchantInfo;
import com.jsowell.pile.dto.QueryMerchantInfoDTO;
import com.jsowell.pile.vo.web.MerchantSettleInfoVO;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
@@ -103,4 +105,11 @@ public interface PileMerchantInfoMapper {
* @return
*/
List<String> getDeptIdsByAppId(@Param("appId") String appId);
/**
* 后管财务中心页面运营商列表
* @param dto
* @return
*/
List<MerchantSettleInfoVO> queryMerchantSettleInfoList(@Param("dto") QueryMerchantInfoDTO dto);
}