This commit is contained in:
2026-01-09 16:10:04 +08:00
parent 7ac540dfa9
commit e3bf70ab9e
2 changed files with 11 additions and 1 deletions

View File

@@ -3,6 +3,7 @@ package com.czg.service.order.mapper;
import com.czg.service.order.dto.MerchantQueryDTO;
import com.mybatisflex.core.BaseMapper;
import com.czg.order.entity.ShopDirectMerchant;
import org.apache.ibatis.annotations.Param;
import java.util.List;
@@ -14,5 +15,5 @@ import java.util.List;
*/
public interface ShopDirectMerchantMapper extends BaseMapper<ShopDirectMerchant> {
List<ShopDirectMerchant> getEntryList(MerchantQueryDTO queryParam);
List<ShopDirectMerchant> getEntryList(@Param("queryParam") MerchantQueryDTO queryParam);
}