TEnterpriseInfo.java 10.4 KB
Newer Older
王晓倩's avatar
王晓倩 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446
package com.zehong.system.domain;

import java.math.BigDecimal;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.zehong.common.annotation.Excel;
import com.zehong.common.core.domain.BaseEntity;

/**
 * 企业基本信息 t_enterprise_info
 * 
 * @author zehong
 * @date 2021-06-30
 */
public class TEnterpriseInfo extends BaseEntity
{
    private static final long serialVersionUID = 1L;

    /** $column.columnComment */
    private Long infoId;

    /** 单位名称 */
    @Excel(name = "单位名称")
    private String unitName;

    /** 组织机构代码 */
    @Excel(name = "组织机构代码")
    private String orgCode;

    /** 营业执照图片路径 */
    @Excel(name = "营业执照图片路径")
    private String orgFilePath;

    /** 文件名称 */
    @Excel(name = "文件名称")
    private String orgFileName;

    /** 生产经营地址 */
    @Excel(name = "生产经营地址")
    private String runAddress;

    /** 注册地址 */
    @Excel(name = "注册地址")
    private String regAddress;

    /** 监管分类大类 */
    @Excel(name = "监管分类大类")
    private String regulationBigType;

    /** 监管分类小类 */
    @Excel(name = "监管分类小类")
    private String regulationSmallType;

    /** 省份代码 */
    @Excel(name = "省份代码")
    private String provinceId;

    /** 省份名称 */
    @Excel(name = "省份名称")
    private String provinceName;

    /** 城市代码 */
    @Excel(name = "城市代码")
    private String cityId;

    /** 城市名称 */
    @Excel(name = "城市名称")
    private String cityName;

    /** 区县代码 */
    @Excel(name = "区县代码")
    private String countyId;

    /** 区县名称 */
    @Excel(name = "区县名称")
    private String countyName;

    /** 所属地区 */
    @Excel(name = "所属地区")
    private String areaName;

    /** 所属街道 */
    @Excel(name = "所属街道")
    private String streetName;

    /** 经度 */
    @Excel(name = "经度")
    private BigDecimal longitude;

    /** 纬度 */
    @Excel(name = "纬度")
    private BigDecimal latitude;

    /** 法定代表人 */
    @Excel(name = "法定代表人")
    private String legalPerson;

    /** 法定代表人手机 */
    @Excel(name = "法定代表人手机")
    private String legalPersonPhone;

    /** 法定代表人座机号码 */
    @Excel(name = "法定代表人座机号码")
    private String legalPersonTelephone;

    /** 法人邮箱 */
    @Excel(name = "法人邮箱")
    private String legalPersonEmail;

    /** 授权书 */
    @Excel(name = "授权书")
    private String authorizeFile;

    /** 授权书文件原名 */
    @Excel(name = "授权书文件原名")
    private String authorizeFileOriginalName;

    /** 厂区边界 */
    @Excel(name = "厂区边界")
    private String boundary;

    /** 是否启用,0启用,1禁用 */
    @Excel(name = "是否启用,0启用,1禁用")
    private String isEnable;

    /** 创建人id */
    @Excel(name = "创建人id")
    private String createUserId;

    /** 更新人id */
    @Excel(name = "更新人id")
    private String updateUserId;

    /** 备注 */
    @Excel(name = "备注")
    private String remarks;

    public void setInfoId(Long infoId) 
    {
        this.infoId = infoId;
    }

    public Long getInfoId() 
    {
        return infoId;
    }
    public void setUnitName(String unitName) 
    {
        this.unitName = unitName;
    }

    public String getUnitName() 
    {
        return unitName;
    }
    public void setOrgCode(String orgCode) 
    {
        this.orgCode = orgCode;
    }

    public String getOrgCode() 
    {
        return orgCode;
    }
    public void setOrgFilePath(String orgFilePath) 
    {
        this.orgFilePath = orgFilePath;
    }

    public String getOrgFilePath() 
    {
        return orgFilePath;
    }
    public void setOrgFileName(String orgFileName) 
    {
        this.orgFileName = orgFileName;
    }

    public String getOrgFileName() 
    {
        return orgFileName;
    }
    public void setRunAddress(String runAddress) 
    {
        this.runAddress = runAddress;
    }

    public String getRunAddress() 
    {
        return runAddress;
    }
    public void setRegAddress(String regAddress) 
    {
        this.regAddress = regAddress;
    }

    public String getRegAddress() 
    {
        return regAddress;
    }
    public void setRegulationBigType(String regulationBigType) 
    {
        this.regulationBigType = regulationBigType;
    }

    public String getRegulationBigType() 
    {
        return regulationBigType;
    }
    public void setRegulationSmallType(String regulationSmallType) 
    {
        this.regulationSmallType = regulationSmallType;
    }

    public String getRegulationSmallType() 
    {
        return regulationSmallType;
    }
    public void setProvinceId(String provinceId) 
    {
        this.provinceId = provinceId;
    }

    public String getProvinceId() 
    {
        return provinceId;
    }
    public void setProvinceName(String provinceName) 
    {
        this.provinceName = provinceName;
    }

    public String getProvinceName() 
    {
        return provinceName;
    }
    public void setCityId(String cityId) 
    {
        this.cityId = cityId;
    }

    public String getCityId() 
    {
        return cityId;
    }
    public void setCityName(String cityName) 
    {
        this.cityName = cityName;
    }

    public String getCityName() 
    {
        return cityName;
    }
    public void setCountyId(String countyId) 
    {
        this.countyId = countyId;
    }

    public String getCountyId() 
    {
        return countyId;
    }
    public void setCountyName(String countyName) 
    {
        this.countyName = countyName;
    }

    public String getCountyName() 
    {
        return countyName;
    }
    public void setAreaName(String areaName) 
    {
        this.areaName = areaName;
    }

    public String getAreaName() 
    {
        return areaName;
    }
    public void setStreetName(String streetName) 
    {
        this.streetName = streetName;
    }

    public String getStreetName() 
    {
        return streetName;
    }
    public void setLongitude(BigDecimal longitude) 
    {
        this.longitude = longitude;
    }

    public BigDecimal getLongitude() 
    {
        return longitude;
    }
    public void setLatitude(BigDecimal latitude) 
    {
        this.latitude = latitude;
    }

    public BigDecimal getLatitude() 
    {
        return latitude;
    }
    public void setLegalPerson(String legalPerson) 
    {
        this.legalPerson = legalPerson;
    }

    public String getLegalPerson() 
    {
        return legalPerson;
    }
    public void setLegalPersonPhone(String legalPersonPhone) 
    {
        this.legalPersonPhone = legalPersonPhone;
    }

    public String getLegalPersonPhone() 
    {
        return legalPersonPhone;
    }
    public void setLegalPersonTelephone(String legalPersonTelephone) 
    {
        this.legalPersonTelephone = legalPersonTelephone;
    }

    public String getLegalPersonTelephone() 
    {
        return legalPersonTelephone;
    }
    public void setLegalPersonEmail(String legalPersonEmail) 
    {
        this.legalPersonEmail = legalPersonEmail;
    }

    public String getLegalPersonEmail() 
    {
        return legalPersonEmail;
    }
    public void setAuthorizeFile(String authorizeFile) 
    {
        this.authorizeFile = authorizeFile;
    }

    public String getAuthorizeFile() 
    {
        return authorizeFile;
    }
    public void setAuthorizeFileOriginalName(String authorizeFileOriginalName) 
    {
        this.authorizeFileOriginalName = authorizeFileOriginalName;
    }

    public String getAuthorizeFileOriginalName() 
    {
        return authorizeFileOriginalName;
    }
    public void setBoundary(String boundary) 
    {
        this.boundary = boundary;
    }

    public String getBoundary() 
    {
        return boundary;
    }
    public void setIsEnable(String isEnable) 
    {
        this.isEnable = isEnable;
    }

    public String getIsEnable() 
    {
        return isEnable;
    }
    public void setCreateUserId(String createUserId) 
    {
        this.createUserId = createUserId;
    }

    public String getCreateUserId() 
    {
        return createUserId;
    }
    public void setUpdateUserId(String updateUserId) 
    {
        this.updateUserId = updateUserId;
    }

    public String getUpdateUserId() 
    {
        return updateUserId;
    }
    public void setRemarks(String remarks) 
    {
        this.remarks = remarks;
    }

    public String getRemarks() 
    {
        return remarks;
    }

    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("infoId", getInfoId())
            .append("unitName", getUnitName())
            .append("orgCode", getOrgCode())
            .append("orgFilePath", getOrgFilePath())
            .append("orgFileName", getOrgFileName())
            .append("runAddress", getRunAddress())
            .append("regAddress", getRegAddress())
            .append("regulationBigType", getRegulationBigType())
            .append("regulationSmallType", getRegulationSmallType())
            .append("provinceId", getProvinceId())
            .append("provinceName", getProvinceName())
            .append("cityId", getCityId())
            .append("cityName", getCityName())
            .append("countyId", getCountyId())
            .append("countyName", getCountyName())
            .append("areaName", getAreaName())
            .append("streetName", getStreetName())
            .append("longitude", getLongitude())
            .append("latitude", getLatitude())
            .append("legalPerson", getLegalPerson())
            .append("legalPersonPhone", getLegalPersonPhone())
            .append("legalPersonTelephone", getLegalPersonTelephone())
            .append("legalPersonEmail", getLegalPersonEmail())
            .append("authorizeFile", getAuthorizeFile())
            .append("authorizeFileOriginalName", getAuthorizeFileOriginalName())
            .append("boundary", getBoundary())
            .append("isEnable", getIsEnable())
            .append("createUserId", getCreateUserId())
            .append("updateUserId", getUpdateUserId())
            .append("updateTime", getUpdateTime())
            .append("createTime", getCreateTime())
            .append("remarks", getRemarks())
            .toString();
    }
}