fix(): 1.0.1

master
yangpeng 2024-08-11 09:20:35 +08:00
parent 4157930591
commit 4aec93ea79
2 changed files with 4 additions and 4 deletions

View File

@ -23,18 +23,18 @@ public class CustomerOrderPaySimpleResp {
/** /**
* *
*/ */
@Schema(name = "客户单号", type = "String", defaultValue = "ORDER1A2B3C4D5E6F", description = "客户传入的支付信息") @Schema(title = "客户单号", type = "String", defaultValue = "ORDER1A2B3C4D5E6F", description = "客户传入的支付信息")
private String cusOrderNumber; private String cusOrderNumber;
/** /**
* *
*/ */
@Schema(name = "支付金额", type = "BigDecimal", defaultValue = "27.56", description = "客户传入的支付金额") @Schema(title = "支付金额", type = "BigDecimal", defaultValue = "27.56", description = "客户传入的支付金额")
private BigDecimal price; private BigDecimal price;
/** /**
* *
*/ */
@Schema(name = "支付渠道商", type = "String", defaultValue = "支付宝", description = "用户支付的时候选择的渠道商") @Schema(title = "支付渠道商", type = "String", defaultValue = "支付宝", description = "用户支付的时候选择的渠道商")
private String channelTypeName; private String channelTypeName;
} }

View File

@ -88,7 +88,7 @@ public class OrderPayCustomerServiceImpl
= orderPayCustomerList.stream().map(OrderPayCustomer::getAppCode).collect(Collectors.toSet()); = orderPayCustomerList.stream().map(OrderPayCustomer::getAppCode).collect(Collectors.toSet());
return nacosServerAllList.stream() return nacosServerAllList.stream()
.filter(nacosServer -> ! customerSet.contains(nacosServer)) .filter(nacosServer -> !customerSet.contains(nacosServer))
.toList(); .toList();
} }