From 7e2117e6e7382d942d5cdbb2ac5d35b7d278a478 Mon Sep 17 00:00:00 2001 From: xin <1099200748@qq.com> Date: Tue, 03 Jun 2025 01:27:08 +0800 Subject: [PATCH] 重命名 --- oying-system/src/main/java/com/oying/modules/system/service/MerchantService.java | 14 +++++++------- 1 files changed, 7 insertions(+), 7 deletions(-) diff --git a/oying-system/src/main/java/com/oying/modules/system/service/MerchantsService.java b/oying-system/src/main/java/com/oying/modules/system/service/MerchantService.java similarity index 70% rename from oying-system/src/main/java/com/oying/modules/system/service/MerchantsService.java rename to oying-system/src/main/java/com/oying/modules/system/service/MerchantService.java index c822ba9..5d1c847 100644 --- a/oying-system/src/main/java/com/oying/modules/system/service/MerchantsService.java +++ b/oying-system/src/main/java/com/oying/modules/system/service/MerchantService.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; } -- Gitblit v1.9.3