All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.com.antcloud.api.riskplus.v1_0.request.WithdrawUserCommissionRequest Maven / Gradle / Ivy

//
//  Copyright (c) 2020-present antgroup.com, https://www.antgroup.com
//
//  Licensed under the Apache License, Version 2.0 (the "License");
//  you may not use this file except in compliance with the License.
//  You may obtain a copy of the License at
//
//  http://www.apache.org/licenses/LICENSE-2.0
//
//  Unless required by applicable law or agreed to in writing, software
//  distributed under the License is distributed on an "AS IS" BASIS,
//  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
//  See the License for the specific language governing permissions and
//  limitations under the License.
//
//
package cn.com.antcloud.api.riskplus.v1_0.request;

import cn.com.antcloud.api.product.AntCloudProdRequest;
import cn.com.antcloud.api.riskplus.v1_0.response.WithdrawUserCommissionResponse;
import java.lang.String;
import javax.validation.constraints.NotNull;

/**
 * 提现 */
public class WithdrawUserCommissionRequest extends AntCloudProdRequest {
  @NotNull
  private String orderNumber;

  @NotNull
  private String userOrderNumbers;

  @NotNull
  private String withdrawerId;

  @NotNull
  private String withdrawerAlipayId;

  @NotNull
  private String withdrawerName;

  private String withdrawerPhoneNumber;

  @NotNull
  private String withdrawerIdNumber;

  @NotNull
  private String withdrawAmount;

  @NotNull
  private String orderTitle;

  @NotNull
  private String remark;

  public WithdrawUserCommissionRequest(String productInstanceId) {
    super("riskplus.rpgw.user.commission.withdraw", "1.0", "Java-SDK-20240605", productInstanceId);
  }

  public WithdrawUserCommissionRequest() {
    super("riskplus.rpgw.user.commission.withdraw", "1.0", null);
    this.setSdkVersion("Java-SDK-20240605");
  }

  /**
   * 提现业务单号 */
  public String getOrderNumber() {
    return this.orderNumber;
  }

  /**
   * 提现业务单号 */
  public void setOrderNumber(String orderNumber) {
    this.orderNumber = orderNumber;
  }

  /**
   * 任务单号 */
  public String getUserOrderNumbers() {
    return this.userOrderNumbers;
  }

  /**
   * 任务单号 */
  public void setUserOrderNumbers(String userOrderNumbers) {
    this.userOrderNumbers = userOrderNumbers;
  }

  /**
   * 提现人id */
  public String getWithdrawerId() {
    return this.withdrawerId;
  }

  /**
   * 提现人id */
  public void setWithdrawerId(String withdrawerId) {
    this.withdrawerId = withdrawerId;
  }

  /**
   * 提现人支付宝id */
  public String getWithdrawerAlipayId() {
    return this.withdrawerAlipayId;
  }

  /**
   * 提现人支付宝id */
  public void setWithdrawerAlipayId(String withdrawerAlipayId) {
    this.withdrawerAlipayId = withdrawerAlipayId;
  }

  /**
   * 提现人姓名 */
  public String getWithdrawerName() {
    return this.withdrawerName;
  }

  /**
   * 提现人姓名 */
  public void setWithdrawerName(String withdrawerName) {
    this.withdrawerName = withdrawerName;
  }

  /**
   * 提现人手机 */
  public String getWithdrawerPhoneNumber() {
    return this.withdrawerPhoneNumber;
  }

  /**
   * 提现人手机 */
  public void setWithdrawerPhoneNumber(String withdrawerPhoneNumber) {
    this.withdrawerPhoneNumber = withdrawerPhoneNumber;
  }

  /**
   * 提现人身份证 */
  public String getWithdrawerIdNumber() {
    return this.withdrawerIdNumber;
  }

  /**
   * 提现人身份证 */
  public void setWithdrawerIdNumber(String withdrawerIdNumber) {
    this.withdrawerIdNumber = withdrawerIdNumber;
  }

  /**
   * 提现金额 */
  public String getWithdrawAmount() {
    return this.withdrawAmount;
  }

  /**
   * 提现金额 */
  public void setWithdrawAmount(String withdrawAmount) {
    this.withdrawAmount = withdrawAmount;
  }

  /**
   * 提现附言 */
  public String getOrderTitle() {
    return this.orderTitle;
  }

  /**
   * 提现附言 */
  public void setOrderTitle(String orderTitle) {
    this.orderTitle = orderTitle;
  }

  /**
   * 业务备注 */
  public String getRemark() {
    return this.remark;
  }

  /**
   * 业务备注 */
  public void setRemark(String remark) {
    this.remark = remark;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy