cn.com.antcloud.api.riskplus.v1_0.model.PayMethodLockResult 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.model;
import java.lang.String;
import javax.validation.constraints.NotNull;
/**
* 支付方式锁定结果 */
public class PayMethodLockResult {
@NotNull
private String signStatus;
@NotNull
private String accountId;
@NotNull
private String loginId;
@NotNull
private String payChannel;
@NotNull
private String accountName;
/**
* 签约结果 */
public String getSignStatus() {
return this.signStatus;
}
/**
* 签约结果 */
public void setSignStatus(String signStatus) {
this.signStatus = signStatus;
}
/**
* 账号 */
public String getAccountId() {
return this.accountId;
}
/**
* 账号 */
public void setAccountId(String accountId) {
this.accountId = accountId;
}
/**
* 登录号 */
public String getLoginId() {
return this.loginId;
}
/**
* 登录号 */
public void setLoginId(String loginId) {
this.loginId = loginId;
}
/**
* 支付公司 */
public String getPayChannel() {
return this.payChannel;
}
/**
* 支付公司 */
public void setPayChannel(String payChannel) {
this.payChannel = payChannel;
}
/**
* 绑定账号名称 */
public String getAccountName() {
return this.accountName;
}
/**
* 绑定账号名称 */
public void setAccountName(String accountName) {
this.accountName = accountName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy