cn.com.antcloud.api.ato.v1_0.model.LegalInfo 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.ato.v1_0.model;
import java.lang.String;
import javax.validation.constraints.NotNull;
/**
* 法人信息 */
public class LegalInfo {
@NotNull
private String legalName;
@NotNull
private String legalCertNo;
@NotNull
private FileInfo legalCertFrontFile;
@NotNull
private FileInfo legalCertBackFile;
/**
* 法人名称 */
public String getLegalName() {
return this.legalName;
}
/**
* 法人名称 */
public void setLegalName(String legalName) {
this.legalName = legalName;
}
/**
* 法人证件号 */
public String getLegalCertNo() {
return this.legalCertNo;
}
/**
* 法人证件号 */
public void setLegalCertNo(String legalCertNo) {
this.legalCertNo = legalCertNo;
}
/**
* 法人证件正面 */
public FileInfo getLegalCertFrontFile() {
return this.legalCertFrontFile;
}
/**
* 法人证件正面 */
public void setLegalCertFrontFile(FileInfo legalCertFrontFile) {
this.legalCertFrontFile = legalCertFrontFile;
}
/**
* 法人证件反面 */
public FileInfo getLegalCertBackFile() {
return this.legalCertBackFile;
}
/**
* 法人证件反面 */
public void setLegalCertBackFile(FileInfo legalCertBackFile) {
this.legalCertBackFile = legalCertBackFile;
}
}