cn.com.antcloud.api.ato.v1_0.model.CompanyInfoUpdate 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;
/**
* 公司信息修改 */
public class CompanyInfoUpdate {
private FileInfo businessLicenseFile;
private String productMainClass;
private String companyName;
private String companyAliasName;
private String tenantId;
private String companyMobile;
private String companyAddress;
private String contactName;
private String contactMobile;
private String merchantType;
/**
* 营业执照文件信息 */
public FileInfo getBusinessLicenseFile() {
return this.businessLicenseFile;
}
/**
* 营业执照文件信息 */
public void setBusinessLicenseFile(FileInfo businessLicenseFile) {
this.businessLicenseFile = businessLicenseFile;
}
/**
* 业务类型 枚举 */
public String getProductMainClass() {
return this.productMainClass;
}
/**
* 业务类型 枚举 */
public void setProductMainClass(String productMainClass) {
this.productMainClass = productMainClass;
}
/**
* 公司名称 */
public String getCompanyName() {
return this.companyName;
}
/**
* 公司名称 */
public void setCompanyName(String companyName) {
this.companyName = companyName;
}
/**
* 公司别名 */
public String getCompanyAliasName() {
return this.companyAliasName;
}
/**
* 公司别名 */
public void setCompanyAliasName(String companyAliasName) {
this.companyAliasName = companyAliasName;
}
/**
* 公司数科租户id */
public String getTenantId() {
return this.tenantId;
}
/**
* 公司数科租户id */
public void setTenantId(String tenantId) {
this.tenantId = tenantId;
}
/**
* 公司联系电话 */
public String getCompanyMobile() {
return this.companyMobile;
}
/**
* 公司联系电话 */
public void setCompanyMobile(String companyMobile) {
this.companyMobile = companyMobile;
}
/**
* 公司联系地址 */
public String getCompanyAddress() {
return this.companyAddress;
}
/**
* 公司联系地址 */
public void setCompanyAddress(String companyAddress) {
this.companyAddress = companyAddress;
}
/**
* 联系人姓名 */
public String getContactName() {
return this.contactName;
}
/**
* 联系人姓名 */
public void setContactName(String contactName) {
this.contactName = contactName;
}
/**
* 联系人手机号码 */
public String getContactMobile() {
return this.contactMobile;
}
/**
* 联系人手机号码 */
public void setContactMobile(String contactMobile) {
this.contactMobile = contactMobile;
}
/**
* 商户类型: 01:企业;07:个体工商户 默认不填为01 */
public String getMerchantType() {
return this.merchantType;
}
/**
* 商户类型: 01:企业;07:个体工商户 默认不填为01 */
public void setMerchantType(String merchantType) {
this.merchantType = merchantType;
}
}