feat():更新内容
parent
7556087260
commit
b8b0da3670
|
@ -0,0 +1,25 @@
|
|||
package com.muyu.cloud.pay.domain.resp;
|
||||
|
||||
import io.swagger.v3.oas.annotations.tags.Tag;
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Builder;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
/**
|
||||
* @Author:yang
|
||||
* @Package:com.muyu.cloud.pay.domain.resp
|
||||
* @Project:cloud-pay
|
||||
* @name:CustomerListResp
|
||||
* @Date:2024/8/7 20:33
|
||||
*/
|
||||
@Data
|
||||
@Builder
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
@Tag(name = "客户信息相应对象",description = "负责客户信息查询表")
|
||||
public class CustomerResp {
|
||||
|
||||
|
||||
|
||||
}
|
|
@ -14,7 +14,6 @@ import java.util.List;
|
|||
* @name:OrderPayCustomerService
|
||||
* @Date:2024/8/5 19:54
|
||||
*/
|
||||
@Service
|
||||
public interface OrderPayCustomerService extends IService<OrderPayCustomer> {
|
||||
|
||||
public List<OrderPayCustomer> selectList(CustomerListReq customerListReq);
|
||||
|
|
|
@ -8,6 +8,7 @@ import com.muyu.cloud.pay.mapper.OrderPayCustomerMapper;
|
|||
import com.muyu.cloud.pay.service.OrderPayCustomerService;
|
||||
import org.apache.catalina.mapper.Mapper;
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
|
@ -18,6 +19,7 @@ import java.util.List;
|
|||
* @name:impl
|
||||
* @Date:2024/8/5 19:56
|
||||
*/
|
||||
@Service
|
||||
public class OrderPayCustomerServiceImpl
|
||||
extends ServiceImpl<OrderPayCustomerMapper,OrderPayCustomer>
|
||||
implements OrderPayCustomerService {
|
||||
|
|
Loading…
Reference in New Issue