This commit is contained in:
77
2024-11-25 14:56:41 +08:00
parent f57a8d41f6
commit ab685878b7
14 changed files with 181 additions and 14 deletions

View File

@@ -0,0 +1,13 @@
package com.ruoyi.cai.dto.app.vo.pay;
import lombok.Data;
import java.math.BigDecimal;
@Data
public class OrderPayStatusResp {
private String orderNo;
private BigDecimal amount;
private Integer payStatus;
}

View File

@@ -14,6 +14,8 @@ public class SettingGoodsVo {
private Integer hasWechatPay = 1;
@Schema(description = "支付宝是否放在第一个 1-是 0-否")
private Integer alipayFirst = 1;
@Schema(description = "是否使用第四方支付 1-是 0-否")
private Integer useTrdPay = 1;
@Schema(description = "支付设置")
private List<Goods> goods;
}