|
@@ -3,6 +3,7 @@ package com.zhongshu.card.client.model.projectAbout;
|
|
|
import com.github.microservice.types.payment.PaymentChannelType;
|
|
import com.github.microservice.types.payment.PaymentChannelType;
|
|
|
import com.github.microservice.types.payment.PaymentType;
|
|
import com.github.microservice.types.payment.PaymentType;
|
|
|
import com.zhongshu.card.client.model.base.SuperParam;
|
|
import com.zhongshu.card.client.model.base.SuperParam;
|
|
|
|
|
+import com.zhongshu.card.client.type.DataState;
|
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
|
|
import jakarta.validation.constraints.NotEmpty;
|
|
import jakarta.validation.constraints.NotEmpty;
|
|
|
import jakarta.validation.constraints.NotNull;
|
|
import jakarta.validation.constraints.NotNull;
|
|
@@ -38,6 +39,9 @@ public class PayChannelConfigParam extends SuperParam {
|
|
|
@Schema(description = "汇率说明")
|
|
@Schema(description = "汇率说明")
|
|
|
private String rateMark;
|
|
private String rateMark;
|
|
|
|
|
|
|
|
|
|
+ @Schema(description = "数据状态")
|
|
|
|
|
+ private DataState state = DataState.Enable;
|
|
|
|
|
+
|
|
|
@Schema(description = "渠道支持的支付方式")
|
|
@Schema(description = "渠道支持的支付方式")
|
|
|
private List<PaymentType> paymentTypes = new ArrayList<>();
|
|
private List<PaymentType> paymentTypes = new ArrayList<>();
|
|
|
|
|
|