File was renamed from oying-system/src/main/java/com/oying/modules/system/mapper/MerchantsMapper.java |
| | |
| | | package com.oying.modules.system.mapper; |
| | | |
| | | import com.oying.modules.system.domain.Merchants; |
| | | import com.oying.modules.system.domain.Merchant; |
| | | import com.oying.modules.system.domain.dto.MerchantsQueryCriteria; |
| | | import java.util.List; |
| | | import org.apache.ibatis.annotations.Param; |
| | |
| | | * @date 2025-05-29 |
| | | **/ |
| | | @Mapper |
| | | public interface MerchantsMapper extends BaseMapper<Merchants> { |
| | | public interface MerchantMapper extends BaseMapper<Merchant> { |
| | | |
| | | IPage<Merchants> findAll(@Param("criteria") MerchantsQueryCriteria criteria, Page<Object> page); |
| | | IPage<Merchant> findAll(@Param("criteria") MerchantsQueryCriteria criteria, Page<Object> page); |
| | | |
| | | List<Merchants> findAll(@Param("criteria") MerchantsQueryCriteria criteria); |
| | | List<Merchant> findAll(@Param("criteria") MerchantsQueryCriteria criteria); |
| | | } |