feat(): 增加未介入客户接口

master
zzh 2024-08-04 21:26:43 +08:00
parent 221fb09342
commit c398f0713a
3 changed files with 6 additions and 22 deletions

View File

@ -1,19 +0,0 @@
//package com.bwie.cloud.pay.domain.resp;
//
//import lombok.AllArgsConstructor;
//import lombok.Builder;
//import lombok.Data;
//import lombok.NoArgsConstructor;
//
///**
// * @Authorzhangzhihao
// * @nameorderPayResp
// * @Date2024/8/1 11:44
// * 不准抄代码,添加注释,清楚每一行代码意思
// */
//@Data
//@Builder
//@NoArgsConstructor
//@AllArgsConstructor
//public class OrderPayResp {
//}

View File

@ -10,6 +10,7 @@ import io.swagger.v3.oas.annotations.media.Schema;
import io.swagger.v3.oas.annotations.tags.Tag;
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.*;
@ -28,7 +29,8 @@ import java.util.List;
@Tag(name = "客户控制层",description = "进行客户管理,查看等相关操作")
public class OrderPayCustomerController {
private final OrderPayCustomerService orderPayCustomerService;
@Autowired
private OrderPayCustomerService orderPayCustomerService;
/**

View File

@ -14,6 +14,7 @@ import com.bwie.nacos.remote.service.NacosServeService;
import com.muyu.common.core.domain.Result;
import lombok.extern.log4j.Log4j2;
import org.apache.commons.lang3.StringUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import javax.annotation.Resource;
@ -36,10 +37,10 @@ public class OrderPayCustomerServiceImpl
implements OrderPayCustomerService {
@Resource
@Autowired
private NacosServeService nacosServeService;
@Resource(type = OrderPayServiceImpl.class)
@Resource
private OrderPayService orderPayService;
@Override