xin
2025-06-03 7e2117e6e7382d942d5cdbb2ac5d35b7d278a478
oying-system/src/main/java/com/oying/modules/system/service/MerchantService.java
File was renamed from oying-system/src/main/java/com/oying/modules/system/service/MerchantsService.java
@@ -1,6 +1,6 @@
package com.oying.modules.system.service;
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 java.io.IOException;
@@ -14,7 +14,7 @@
* @author lixin
* @date 2025-05-29
**/
public interface MerchantsService extends IService<Merchants> {
public interface MerchantService extends IService<Merchant> {
    /**
    * 查询数据分页
@@ -22,26 +22,26 @@
    * @param page 分页参数
    * @return PageResult
    */
    PageResult<Merchants> queryAll(MerchantsQueryCriteria criteria, Page<Object> page);
    PageResult<Merchant> queryAll(MerchantsQueryCriteria criteria, Page<Object> page);
    /**
    * 查询所有数据不分页
    * @param criteria 条件参数
    * @return List<MerchantsDto>
    */
    List<Merchants> queryAll(MerchantsQueryCriteria criteria);
    List<Merchant> queryAll(MerchantsQueryCriteria criteria);
    /**
    * 创建
    * @param resources /
    */
    void create(Merchants resources);
    void create(Merchant resources);
    /**
    * 编辑
    * @param resources /
    */
    void update(Merchants resources);
    void update(Merchant resources);
    /**
    * 多选删除
@@ -55,5 +55,5 @@
    * @param response /
    * @throws IOException /
    */
    void download(List<Merchants> all, HttpServletResponse response) throws IOException;
    void download(List<Merchant> all, HttpServletResponse response) throws IOException;
}