|
|
@@ -0,0 +1,33 @@
|
|
|
+package com.zhongshu.payment.client.payModel.cooperator.model;
|
|
|
+
|
|
|
+import com.github.microservice.models.requestModel.SuperCooperatorResponseModel;
|
|
|
+import com.github.microservice.models.requestModel.SuperResponseModel;
|
|
|
+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 QueryWithdrawBalanceResponse extends SuperCooperatorResponseModel {
|
|
|
+
|
|
|
+ @Schema(description = "系统编号")
|
|
|
+ private String sysId;
|
|
|
+
|
|
|
+ @Schema(description = "T0可提现金额")
|
|
|
+ private String t0WithdrawAmt;
|
|
|
+
|
|
|
+ @Schema(description = "TZ可提现金额")
|
|
|
+ private String tzWithdrawAmt;
|
|
|
+
|
|
|
+ @Schema(description = "D1提现待支付金额")
|
|
|
+ private String d1withdrawAmtWaitPay;
|
|
|
+
|
|
|
+}
|