feat():测试

master
chentaisen 2024-08-08 20:59:22 +08:00
parent 6aec96b198
commit 18efecdeaf
1 changed files with 8 additions and 2 deletions

View File

@ -1,5 +1,6 @@
package com.muyu.cloud.pay.controller;
import com.dtflys.forest.springboot.annotation.ForestScannerRegister;
import com.muyu.cloud.pay.domain.OrderPayCustomer;
import com.muyu.cloud.pay.domain.req.CustomerListReq;
import com.muyu.cloud.pay.domain.resp.CustomerResp;
@ -12,6 +13,7 @@ import jakarta.validation.constraints.NotNull;
import lombok.AllArgsConstructor;
import lombok.RequiredArgsConstructor;
import lombok.extern.log4j.Log4j2;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.validation.annotation.Validated;
import org.springframework.web.bind.annotation.*;
@ -26,13 +28,17 @@ import java.util.List;
@Log4j2
@RestController
@RequestMapping("/customer")
@RequiredArgsConstructor
@Tag(name = "客户控制层",description = "进行客户管理、查看等相关操作")
public class OrderPayCustomerController {
public OrderPayCustomerController(){
log.info("forest扫描路径{}", ForestScannerRegister.getBasePackages());
}
/**
*
*/
private final OrderPayCustomerService orderPayCustomerService;
@Autowired
private OrderPayCustomerService orderPayCustomerService;
/**
*