package com.yanzuoguang.wxxcx.ocr.license; import com.yanzuoguang.wxxcx.base.WxXcxResponseBaseError; /*** * 返回结果 * * @author:heyanou */ public class WxOcrBusinessLicenseDataRes extends WxXcxResponseBaseError { /** * <p> * 描述:注册号 * </p> */ private String reg_num; /** * <p> * 描述:编号 * </p> */ private String serial; /** * <p> * 描述:法定代表人姓名 * </p> */ private String legal_representative; /** * <p> * 描述:企业名称 * </p> */ private String enterprise_name; /** * <p> * 描述:组成形式 * </p> */ private String type_of_organization; /** * <p> * 描述:经营场所/企业住所 * </p> */ private String address; /** * <p> * 描述:公司类型 * </p> */ private String type_of_enterprise; /** * <p> * 描述:经营范围 * </p> */ private String business_scope; /** * <p> * 描述:注册资本 * </p> */ private String registered_capital; /** * <p> * 描述:实收资本 * </p> */ private String paid_in_capital; /** * <p> * 描述:营业期限 * </p> */ private String valid_period; /** * <p> * 描述:注册日期/成立日期 * </p> */ private String registered_date; /** * <p> * 描述:营业执照位置 * </p> */ private String cert_position; /** * <p> * 描述:图片大小 * </p> */ private String img_size; public String getReg_num() { return reg_num; } public void setReg_num(String reg_num) { this.reg_num = reg_num; } public String getSerial() { return serial; } public void setSerial(String serial) { this.serial = serial; } public String getLegal_representative() { return legal_representative; } public void setLegal_representative(String legal_representative) { this.legal_representative = legal_representative; } public String getEnterprise_name() { return enterprise_name; } public void setEnterprise_name(String enterprise_name) { this.enterprise_name = enterprise_name; } public String getType_of_organization() { return type_of_organization; } public void setType_of_organization(String type_of_organization) { this.type_of_organization = type_of_organization; } public String getAddress() { return address; } public void setAddress(String address) { this.address = address; } public String getType_of_enterprise() { return type_of_enterprise; } public void setType_of_enterprise(String type_of_enterprise) { this.type_of_enterprise = type_of_enterprise; } public String getBusiness_scope() { return business_scope; } public void setBusiness_scope(String business_scope) { this.business_scope = business_scope; } public String getRegistered_capital() { return registered_capital; } public void setRegistered_capital(String registered_capital) { this.registered_capital = registered_capital; } public String getPaid_in_capital() { return paid_in_capital; } public void setPaid_in_capital(String paid_in_capital) { this.paid_in_capital = paid_in_capital; } public String getValid_period() { return valid_period; } public void setValid_period(String valid_period) { this.valid_period = valid_period; } public String getRegistered_date() { return registered_date; } public void setRegistered_date(String registered_date) { this.registered_date = registered_date; } public String getCert_position() { return cert_position; } public void setCert_position(String cert_position) { this.cert_position = cert_position; } public String getImg_size() { return img_size; } public void setImg_size(String img_size) { this.img_size = img_size; } }