|
@@ -0,0 +1,57 @@
|
|
|
|
|
+package com.zhongshu.payment.client.payModel.cooperator.model;
|
|
|
|
|
+
|
|
|
|
|
+import io.swagger.v3.oas.annotations.media.Schema;
|
|
|
|
|
+import lombok.Data;
|
|
|
|
|
+import lombok.NoArgsConstructor;
|
|
|
|
|
+import org.hibernate.internal.build.AllowPrintStacktrace;
|
|
|
|
|
+
|
|
|
|
|
+/**
|
|
|
|
|
+ * 提现 参数
|
|
|
|
|
+ *
|
|
|
|
|
+ * @author TRX
|
|
|
|
|
+ * @date 2024/9/5
|
|
|
|
|
+ */
|
|
|
|
|
+@Data
|
|
|
|
|
+@AllowPrintStacktrace
|
|
|
|
|
+@NoArgsConstructor
|
|
|
|
|
+public class ProcessWithdrawParam extends CooperatorSuperParam {
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "系统编号")
|
|
|
|
|
+ private String sysId;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "商户号")
|
|
|
|
|
+ private String mchntNo;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "系统订单号, 外部平台需保证各自系统上传的该字段的唯一性")
|
|
|
|
|
+ private String sysOrderId;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "提现通知URL")
|
|
|
|
|
+ private String notifyUrl;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "提现类型 0 - D0 1 - D1(对公对私是TN内部维护)")
|
|
|
|
|
+ private String withdrawType = "0";
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "提现金额 单位分")
|
|
|
|
|
+ private String withdrawAmt;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "多应用类型 74")
|
|
|
|
|
+ private String appType;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "提现手续费扣率 提现手续费扣率,必须>=0, 例如:0.001")
|
|
|
|
|
+ private String feeRatio = "0";
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "提现备注")
|
|
|
|
|
+ private String remark;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "补贴标记 0-不补贴 1-补贴(如果上送了该标记字段值为1,D0提现不判断手续费是否满足保底,否则要判断)")
|
|
|
|
|
+ private String subsFlag = "0";
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "保底手续费 不能为空,最长18位,全为数字,单位:分")
|
|
|
|
|
+ private String minFee = "0";
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "垫资手续费补贴标记 0:不补贴 1:补贴(传1时,如果有垫支手续费则由机构承担,否则由商户承担)")
|
|
|
|
|
+ private String d0SubsFlag = "0";
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "提现附言 提现附言长度最长40位,数字字母40个,汉字20个")
|
|
|
|
|
+ private String postscript;
|
|
|
|
|
+}
|