feat():补齐订单客户相关API接口

master
86191 2024-08-08 17:28:44 +08:00
parent 4f9e9adb87
commit 60b717dd2c
1 changed files with 3 additions and 3 deletions

View File

@ -21,16 +21,16 @@ public class CustomerOrderPaySimpleResp {
/** /**
* *
*/ */
@Schema(name = "客户单号",type = "string",defaultValue = "I99L77Y52",description = "客户传入的支付单信息") @Schema(title = "客户单号",type = "string",defaultValue = "I99L77Y52",description = "客户传入的支付单信息")
private String cusOrderNumber; private String cusOrderNumber;
/** /**
* *
*/ */
@Schema(name = "支付金额",type = "BigDecimal",defaultValue = "9977.52",description = "客户传入的支付金额") @Schema(title = "支付金额",type = "BigDecimal",defaultValue = "9977.52",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;
} }