33333333333

This commit is contained in:
777
2025-01-18 00:50:39 +08:00
parent a096f565e1
commit 1a9802a916
20 changed files with 92 additions and 52 deletions

View File

@@ -51,6 +51,7 @@ public class PayTrdConfig implements Serializable {
private String sign;
private String aliProductId;
private String wxProductId;
private BigDecimal minAmount;
private BigDecimal maxAmount;
@@ -58,6 +59,7 @@ public class PayTrdConfig implements Serializable {
private Integer sortBy;
private Integer enableStatus;
private Integer enableWxStatus;
/**
* 是否删除
*/
@@ -65,4 +67,8 @@ public class PayTrdConfig implements Serializable {
private LocalDateTime createTime;
public String getProductId(boolean wx){
return wx?wxProductId:aliProductId;
}
}