添加@TableId

master
李东佳 2024-08-23 18:23:03 +08:00
parent 261439ded4
commit 03a938c294
1 changed files with 3 additions and 3 deletions

View File

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