feat():更新内容

master
Yueng 2024-08-07 21:01:15 +08:00
parent 7556087260
commit b8b0da3670
3 changed files with 27 additions and 1 deletions

View File

@ -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;
/**
* @Authoryang
* @Packagecom.muyu.cloud.pay.domain.resp
* @Projectcloud-pay
* @nameCustomerListResp
* @Date2024/8/7 20:33
*/
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
@Tag(name = "客户信息相应对象",description = "负责客户信息查询表")
public class CustomerResp {
}

View File

@ -14,7 +14,6 @@ import java.util.List;
* @nameOrderPayCustomerService
* @Date2024/8/5 19:54
*/
@Service
public interface OrderPayCustomerService extends IService<OrderPayCustomer> {
public List<OrderPayCustomer> selectList(CustomerListReq customerListReq);

View File

@ -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;
* @nameimpl
* @Date2024/8/5 19:56
*/
@Service
public class OrderPayCustomerServiceImpl
extends ServiceImpl<OrderPayCustomerMapper,OrderPayCustomer>
implements OrderPayCustomerService {