TEnterpriseInfo.java 5.86 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
package com.zehong.system.domain;

import com.zehong.common.annotation.Excel;
import com.zehong.common.core.domain.BaseEntity;

import java.math.BigDecimal;

/**
 * 企业信息对象 t_enterprise_info
 *
 * @author zehong
 * @date 2022-01-24
 */
public class TEnterpriseInfo extends BaseEntity
{
    private static final long serialVersionUID = 1L;

    /** 企业id */
19
    private String enterpriseId;
20 21

    /**创建企业id*/
22
    private String createEnterpriseId;
23

24 25


26 27 28 29
    /** 企业名称 */
    @Excel(name = "企业名称")
    private String enterpriseName;

30 31

    @Excel(name = "企业分类",dictType = "enterprise_type")
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
    private Integer enterpriseType;

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

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

    /** 经营区域 */
    @Excel(name = "经营区域")
    private String businessArea;

    /** 经度 */
    private BigDecimal longitude;

    /** 纬度 */
    private BigDecimal latitude;

    /** 图表类型 */
    private String iconType;

    /** 许可证编号 */
    @Excel(name = "许可证编号")
    private String licenseKey;

    /** 许可证有效期 */
    @Excel(name = "许可证有效期")
    private String licenseValidityTime;

    /** 年度监督检查情况 */
    @Excel(name = "年度监督检查情况")
    private String annualSupervisionInspection;

    /** 是否删除(0正常,1删除) */
    private String isDel;

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

    /** 营业执照图片地址*/
    private String doDusiness;

    /**本地存储图片路径*/
    private String burl;

    public Integer getEnterpriseType() {
        return enterpriseType;
    }

    public void setEnterpriseType(Integer enterpriseType) {
        this.enterpriseType = enterpriseType;
    }

88
    public String getCreateEnterpriseId() {
89 90 91
        return createEnterpriseId;
    }

92
    public void setCreateEnterpriseId(String createEnterpriseId) {
93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
        this.createEnterpriseId = createEnterpriseId;
    }

    public String getBurl() {
        return burl;
    }

    public void setBurl(String burl) {
        this.burl = burl;
    }

    public static long getSerialVersionUID() {
        return serialVersionUID;
    }

    public String getDoDusiness() {
        return doDusiness;
    }

    public void setDoDusiness(String doDusiness) {
        this.doDusiness = doDusiness;
    }

116
    public void setEnterpriseId(String enterpriseId)
117 118 119 120
    {
        this.enterpriseId = enterpriseId;
    }

121
    public String getEnterpriseId()
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
    {
        return enterpriseId;
    }
    public void setEnterpriseName(String enterpriseName)
    {
        this.enterpriseName = enterpriseName;
    }

    public String getEnterpriseName()
    {
        return enterpriseName;
    }
    public void setRegisterAddress(String registerAddress)
    {
        this.registerAddress = registerAddress;
    }

    public String getRegisterAddress()
    {
        return registerAddress;
    }
    public void setLegalRepresentative(String legalRepresentative)
    {
        this.legalRepresentative = legalRepresentative;
    }

    public String getLegalRepresentative()
    {
        return legalRepresentative;
    }
    public void setBusinessArea(String businessArea)
    {
        this.businessArea = businessArea;
    }

    public String getBusinessArea()
    {
        return businessArea;
    }

    public BigDecimal getLongitude() {
        return longitude;
    }

    public void setLongitude(BigDecimal longitude) {
        this.longitude = longitude;
    }

    public BigDecimal getLatitude() {
        return latitude;
    }

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

    public void setLicenseKey(String licenseKey)
    {
        this.licenseKey = licenseKey;
    }

    public String getLicenseKey()
    {
        return licenseKey;
    }
    public void setLicenseValidityTime(String licenseValidityTime)
    {
        this.licenseValidityTime = licenseValidityTime;
    }

    public String getLicenseValidityTime()
    {
        return licenseValidityTime;
    }
    public void setAnnualSupervisionInspection(String annualSupervisionInspection)
    {
        this.annualSupervisionInspection = annualSupervisionInspection;
    }

    public String getIconType() {
        return iconType;
    }

    public void setIconType(String iconType) {
        this.iconType = iconType;
    }

    public String getAnnualSupervisionInspection()
    {
        return annualSupervisionInspection;
    }
    public void setIsDel(String isDel)
    {
        this.isDel = isDel;
    }

    public String getIsDel()
    {
        return isDel;
    }
    public void setRemarks(String remarks)
    {
        this.remarks = remarks;
    }

    public String getRemarks()
    {
        return remarks;
    }

    @Override
    public String toString() {
        return "TEnterpriseInfo{" +
                "enterpriseId=" + enterpriseId +
                ", createEnterpriseId=" + createEnterpriseId +
                ", enterpriseName='" + enterpriseName + '\'' +
                ", registerAddress='" + registerAddress + '\'' +
                ", legalRepresentative='" + legalRepresentative + '\'' +
                ", businessArea='" + businessArea + '\'' +
                ", longitude=" + longitude +
                ", latitude=" + latitude +
                ", iconType='" + iconType + '\'' +
                ", licenseKey='" + licenseKey + '\'' +
                ", licenseValidityTime='" + licenseValidityTime + '\'' +
                ", annualSupervisionInspection='" + annualSupervisionInspection + '\'' +
                ", isDel='" + isDel + '\'' +
                ", remarks='" + remarks + '\'' +
                ", doDusiness='" + doDusiness + '\'' +
                ", burl='" + burl + '\'' +
                '}';
    }
}