TEnterpriseInfoVO.java 1.23 KB
Newer Older
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
package com.zehong.system.domain.vo;

import com.zehong.common.annotation.Excel;
import com.zehong.common.core.domain.BaseEntity;
import lombok.Data;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;

import java.math.BigDecimal;

/**
 * 企业信息对象 t_enterprise_info
 *
 * @author zehong
 * @date 2022-01-24
 */
@Data
public class TEnterpriseInfoVO extends BaseEntity
{

    /** 企业id */
    private Long enterpriseId;

    /** 企业名称 */
    private String enterpriseName;

    /** 企业切换使用 */
    private String companyType;

    private Integer enterpriseType;

    /** 经度 */
    private BigDecimal longitude;

    /** 纬度 */
    private BigDecimal latitude;

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

    /** 注册地址 */
    private String registerAddress;

    /** 法定代表人 */
    private String legalRepresentative;

    /** 经营区域 */
    private String businessArea;

    /** 许可证编号 */
    private String licenseKey;

    /** 许可证有效期 */
    private String licenseValidityTime;

    /** 年度监督检查情况 */
    private String annualSupervisionInspection;

    /** 备注 */
    private String remarks;

}