From abbea8026b376974e136217e1ee04b30a2713be4 Mon Sep 17 00:00:00 2001 From: furongxin <419481438@qq.com> Date: Wed, 27 Nov 2024 11:44:29 +0800 Subject: [PATCH] =?UTF-8?q?refactor(system):=20=E7=A7=9F=E8=B5=81=E8=AE=A2?= =?UTF-8?q?=E5=8D=95=E7=9B=B8=E5=85=B3=20API=20=E6=8E=A5=E5=8F=A3=E7=B2=BE?= =?UTF-8?q?=E7=AE=80-=20=E7=A7=BB=E9=99=A4=E4=BA=86=20RentalItemsRecordApi?= =?UTF-8?q?=20=E5=92=8C=20RentalOrderApi=20=E4=B8=AD=E6=9C=AA=E4=BD=BF?= =?UTF-8?q?=E7=94=A8=E7=9A=84=20import=20=E8=AF=AD=E5=8F=A5=20-=20?= =?UTF-8?q?=E5=88=A0=E9=99=A4=E4=BA=86=20RentalItemsRecordApi=20=E4=B8=AD?= =?UTF-8?q?=E6=9C=AA=E4=BD=BF=E7=94=A8=E7=9A=84=20FeignClient=20fallbackFa?= =?UTF-8?q?ctory=20=E9=85=8D=E7=BD=AE=20-=20=E6=B8=85=E7=90=86=E4=BA=86?= =?UTF-8?q?=E6=8E=A5=E5=8F=A3=E4=B8=AD=E7=9A=84=E5=86=97=E4=BD=99=E6=B3=A8?= =?UTF-8?q?=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../yudao/module/system/api/rental/RentalItemsRecordApi.java | 5 ----- .../yudao/module/system/api/rental/RentalOrderApi.java | 1 - 2 files changed, 6 deletions(-) diff --git a/yudao-module-system/yudao-module-system-api/src/main/java/cn/iocoder/yudao/module/system/api/rental/RentalItemsRecordApi.java b/yudao-module-system/yudao-module-system-api/src/main/java/cn/iocoder/yudao/module/system/api/rental/RentalItemsRecordApi.java index e48652f0..94422779 100644 --- a/yudao-module-system/yudao-module-system-api/src/main/java/cn/iocoder/yudao/module/system/api/rental/RentalItemsRecordApi.java +++ b/yudao-module-system/yudao-module-system-api/src/main/java/cn/iocoder/yudao/module/system/api/rental/RentalItemsRecordApi.java @@ -1,20 +1,15 @@ package cn.iocoder.yudao.module.system.api.rental; import cn.iocoder.yudao.framework.common.pojo.CommonResult; -import cn.iocoder.yudao.module.system.api.rental.dto.RentalDepositRecordDTO; import cn.iocoder.yudao.module.system.api.rental.dto.RentalItemsRecordDTO; import cn.iocoder.yudao.module.system.enums.ApiConstants; import io.swagger.v3.oas.annotations.Operation; import io.swagger.v3.oas.annotations.tags.Tag; import org.springframework.cloud.openfeign.FeignClient; -import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PutMapping; import org.springframework.web.bind.annotation.RequestBody; -import org.springframework.web.bind.annotation.RequestParam; -import java.math.BigDecimal; import java.util.List; -import java.util.Map; @FeignClient(name = ApiConstants.NAME) // TODO 芋艿:fallbackFactory = @Tag(name = "RPC 服务 - 租赁订单物品记录") diff --git a/yudao-module-system/yudao-module-system-api/src/main/java/cn/iocoder/yudao/module/system/api/rental/RentalOrderApi.java b/yudao-module-system/yudao-module-system-api/src/main/java/cn/iocoder/yudao/module/system/api/rental/RentalOrderApi.java index aaaf45f8..36c762fb 100644 --- a/yudao-module-system/yudao-module-system-api/src/main/java/cn/iocoder/yudao/module/system/api/rental/RentalOrderApi.java +++ b/yudao-module-system/yudao-module-system-api/src/main/java/cn/iocoder/yudao/module/system/api/rental/RentalOrderApi.java @@ -1,7 +1,6 @@ package cn.iocoder.yudao.module.system.api.rental; import cn.iocoder.yudao.framework.common.pojo.CommonResult; -import cn.iocoder.yudao.module.system.api.position.dto.PositionDTO; import cn.iocoder.yudao.module.system.api.rental.dto.RentalOrderDTO; import cn.iocoder.yudao.module.system.enums.ApiConstants; import io.swagger.v3.oas.annotations.Operation;