Browse Source

1、财务接口加上前缀finance
2、财务系统打印sql

dongpo 7 months ago
parent
commit
5d4c5cfb07

+ 1 - 1
yudao-module-finance/yudao-module-cash-biz/src/main/java/cn/iocoder/yudao/module/cash/controller/admin/paymentinfo/PaymentInfoController.java

@@ -32,7 +32,7 @@ import static cn.iocoder.yudao.framework.common.pojo.CommonResult.success;
 
 @Tag(name = "管理后台 - 付款信息")
 @RestController
-@RequestMapping("/cash/payment-info")
+@RequestMapping("/finance/cash/payment-info")
 @Validated
 public class PaymentInfoController {
 

+ 1 - 1
yudao-module-finance/yudao-module-cash-biz/src/main/java/cn/iocoder/yudao/module/cash/controller/admin/refundinfo/RefundInfoController.java

@@ -32,7 +32,7 @@ import static cn.iocoder.yudao.framework.common.pojo.CommonResult.success;
 
 @Tag(name = "管理后台 - 回款信息")
 @RestController
-@RequestMapping("/cash/refund-info")
+@RequestMapping("/finance/cash/refund-info")
 @Validated
 public class RefundInfoController {
 

+ 1 - 1
yudao-module-finance/yudao-module-expense-biz/src/main/java/cn/iocoder/yudao/module/expense/controller/admin/expenseinfo/ExpenseInfoController.java

@@ -44,7 +44,7 @@ import static cn.iocoder.yudao.framework.common.pojo.CommonResult.success;
 
 @Tag(name = "管理后台 - 报销信息")
 @RestController
-@RequestMapping("/expense/info")
+@RequestMapping("/finance/expense/info")
 @Validated
 public class ExpenseInfoController {
 

+ 1 - 1
yudao-module-finance/yudao-module-expense-biz/src/main/java/cn/iocoder/yudao/module/expense/controller/admin/expenseitem/ExpenseItemController.java

@@ -36,7 +36,7 @@ import static cn.iocoder.yudao.framework.common.pojo.CommonResult.success;
 
 @Tag(name = "管理后台 - 报销费用项目信息")
 @RestController
-@RequestMapping("/expense/item")
+@RequestMapping("/finance/expense/item")
 @Validated
 public class ExpenseItemController {
 

+ 1 - 1
yudao-module-finance/yudao-module-expense-biz/src/main/java/cn/iocoder/yudao/module/expense/controller/admin/expensetype/ExpenseTypeController.java

@@ -36,7 +36,7 @@ import static cn.iocoder.yudao.framework.common.pojo.CommonResult.success;
 
 @Tag(name = "管理后台 - 报销类型信息")
 @RestController
-@RequestMapping("/expense/type")
+@RequestMapping("/finance/expense/type")
 @Validated
 public class ExpenseTypeController {
 

+ 4 - 0
yudao-server/src/main/resources/application-local.yaml

@@ -176,6 +176,10 @@ logging:
     cn.iocoder.yudao.module.relations.dal.mysql: debug
     cn.iocoder.yudao.module.holiday.dal.mysql: debug
     cn.iocoder.yudao.module.attendance.dal.mysql: debug
+    cn.iocoder.yudao.module.asset.dal.mysql: debug
+    cn.iocoder.yudao.module.cash.dal.mysql: debug
+    cn.iocoder.yudao.module.contract.dal.mysql: debug
+    cn.iocoder.yudao.module.expense.dal.mysql: debug
     org.springframework.context.support.PostProcessorRegistrationDelegate: ERROR # TODO 芋艿:先禁用,Spring Boot 3.X 存在部分错误的 WARN 提示
 #    org.flowable: debug