package com.bcxin.ars.dto; import lombok.Data; /** *
* 百保盾回调saas企业信息dto *
* * @author llc * @date 2019-04-23 */ @Data public class ComInfoDto { /** * 公司对应用户名 */ private String userName; /** * 公司ID */ private Long comId; /** * 更新者 */ private Long updateBy; /** * 公司名称 */ private String comName; /** * 注册地所在省份代码 */ private String regProvince; /** * 注册地所在城市代码 */ private String regCity; /** * 注册地所在区/县代码 */ private String regArea; /** * 注册具体地址 */ private String regAddress; /** * 法定代表人姓名 */ private String legalRepName; /** * 法定代表人证件号码 */ private String idCardNo; /** * 法定代表人手机号 */ private String legalRepPhone; /** * 注册资金(万元) */ private String regAmount; /** * 安全范围(以逗号分隔) */ private String safeRange; /** * 经济类型 */ private String economicType; /** * 行业类型 */ private String industryType; /** * 公司类型 */ private String comType; /** * 机构类型 */ private String institutionType; /** * 办公地址 */ private String workAddress; /** * 办公地所在省份 */ private String workProvince; /** * 办公地所在城市 */ private String workCity; /** * 办公地所在区/县 */ private String workArea; /** * 发证机关 */ private String licenceOrg; /** * 发证日期 */ private String licenceDate; /** * 是否百保盾注册 */ private String isBbdRegister = "1"; }