fix(): 1.0.1
parent
4157930591
commit
4aec93ea79
|
@ -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;
|
||||||
}
|
}
|
|
@ -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();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue