File was renamed from oying-system/src/main/java/com/oying/modules/system/service/MerchantsService.java |
| | |
| | | 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; |
| | |
| | | * @author lixin |
| | | * @date 2025-05-29 |
| | | **/ |
| | | public interface MerchantsService extends IService<Merchants> { |
| | | public interface MerchantService extends IService<Merchant> { |
| | | |
| | | /** |
| | | * 查询数据分页 |
| | |
| | | * @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); |
| | | |
| | | /** |
| | | * 多选删除 |
| | |
| | | * @param response / |
| | | * @throws IOException / |
| | | */ |
| | | void download(List<Merchants> all, HttpServletResponse response) throws IOException; |
| | | void download(List<Merchant> all, HttpServletResponse response) throws IOException; |
| | | } |