cn.com.antcloud.api.riskplus.v1_0.request.SyncUserOrderinfoRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of antcloud-api-riskplus Show documentation
Show all versions of antcloud-api-riskplus Show documentation
Ant Chain API SDK For Java
Copyright (c) 2020-present antgroup.com, https://www.antgroup.com
//
// 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.SyncUserOrderinfoResponse;
import java.lang.String;
import javax.validation.constraints.NotNull;
/**
* 信息同步 */
public class SyncUserOrderinfoRequest extends AntCloudProdRequest {
@NotNull
private String orderNumber;
@NotNull
private String orderType;
@NotNull
private String orderAmount;
@NotNull
private String orderTime;
@NotNull
private String inviterId;
@NotNull
private String inviterName;
@NotNull
private String inviterPhoneNumber;
@NotNull
private String inviterIdNumber;
private String invitationCode;
@NotNull
private String inviteeId;
private String inviteeName;
@NotNull
private String inviteePhoneNumber;
private String inviteeIdNumber;
public SyncUserOrderinfoRequest(String productInstanceId) {
super("riskplus.rpgw.user.orderinfo.sync", "1.0", "Java-SDK-20240605", productInstanceId);
}
public SyncUserOrderinfoRequest() {
super("riskplus.rpgw.user.orderinfo.sync", "1.0", null);
this.setSdkVersion("Java-SDK-20240605");
}
/**
* 订单号 */
public String getOrderNumber() {
return this.orderNumber;
}
/**
* 订单号 */
public void setOrderNumber(String orderNumber) {
this.orderNumber = orderNumber;
}
/**
* REGISTER与PURCHASE二选一 */
public String getOrderType() {
return this.orderType;
}
/**
* REGISTER与PURCHASE二选一 */
public void setOrderType(String orderType) {
this.orderType = orderType;
}
/**
* 注册/下单总佣金 */
public String getOrderAmount() {
return this.orderAmount;
}
/**
* 注册/下单总佣金 */
public void setOrderAmount(String orderAmount) {
this.orderAmount = orderAmount;
}
/**
* 时间,格式为yyyy-MM-dd HH:mm:ss */
public String getOrderTime() {
return this.orderTime;
}
/**
* 时间,格式为yyyy-MM-dd HH:mm:ss */
public void setOrderTime(String orderTime) {
this.orderTime = orderTime;
}
/**
* 邀请人id */
public String getInviterId() {
return this.inviterId;
}
/**
* 邀请人id */
public void setInviterId(String inviterId) {
this.inviterId = inviterId;
}
/**
* 邀请人姓名 */
public String getInviterName() {
return this.inviterName;
}
/**
* 邀请人姓名 */
public void setInviterName(String inviterName) {
this.inviterName = inviterName;
}
/**
* 邀请人手机号 */
public String getInviterPhoneNumber() {
return this.inviterPhoneNumber;
}
/**
* 邀请人手机号 */
public void setInviterPhoneNumber(String inviterPhoneNumber) {
this.inviterPhoneNumber = inviterPhoneNumber;
}
/**
* 邀请人身份证号 */
public String getInviterIdNumber() {
return this.inviterIdNumber;
}
/**
* 邀请人身份证号 */
public void setInviterIdNumber(String inviterIdNumber) {
this.inviterIdNumber = inviterIdNumber;
}
/**
* 邀请码 */
public String getInvitationCode() {
return this.invitationCode;
}
/**
* 邀请码 */
public void setInvitationCode(String invitationCode) {
this.invitationCode = invitationCode;
}
/**
* 被邀请人id */
public String getInviteeId() {
return this.inviteeId;
}
/**
* 被邀请人id */
public void setInviteeId(String inviteeId) {
this.inviteeId = inviteeId;
}
/**
* 被邀请人姓名 */
public String getInviteeName() {
return this.inviteeName;
}
/**
* 被邀请人姓名 */
public void setInviteeName(String inviteeName) {
this.inviteeName = inviteeName;
}
/**
* 被邀请人手机号 */
public String getInviteePhoneNumber() {
return this.inviteePhoneNumber;
}
/**
* 被邀请人手机号 */
public void setInviteePhoneNumber(String inviteePhoneNumber) {
this.inviteePhoneNumber = inviteePhoneNumber;
}
/**
* 被邀请人身份证 */
public String getInviteeIdNumber() {
return this.inviteeIdNumber;
}
/**
* 被邀请人身份证 */
public void setInviteeIdNumber(String inviteeIdNumber) {
this.inviteeIdNumber = inviteeIdNumber;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy