huanghongfa
2021-09-02 177249c76aeea0b4bf8d8816d4994e3b445b45ce
springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/vos/community/ComMngRealCompanyExcelVO.java
@@ -1,10 +1,10 @@
package com.panzhihua.common.model.vos.community;
import com.alibaba.excel.annotation.ExcelProperty;
import io.swagger.annotations.ApiModel;
import lombok.Data;
import java.io.Serializable;
import com.alibaba.excel.annotation.ExcelProperty;
import lombok.Data;
/**
 * @description: 实有单位
@@ -14,26 +14,25 @@
@Data
public class ComMngRealCompanyExcelVO implements Serializable {
    @ExcelProperty(value = "单位名称" ,index = 0)
    @ExcelProperty(value = "单位名称", index = 0)
    private String comName;
    @ExcelProperty(value = "公司法人" ,index = 1)
    @ExcelProperty(value = "公司法人", index = 1)
    private String legalPerson;
    @ExcelProperty(value = "负责人" ,index = 2)
    @ExcelProperty(value = "负责人", index = 2)
    private String leader;
    @ExcelProperty(value = "联系方式" ,index = 3)
    @ExcelProperty(value = "联系方式", index = 3)
    private String contactsPhone;
    @ExcelProperty(value = "人员规模" ,index = 4)
    @ExcelProperty(value = "人员规模", index = 4)
    private Integer scope;
    @ExcelProperty(value = "详细地址" ,index = 5)
    @ExcelProperty(value = "详细地址", index = 5)
    private String address;
    @ExcelProperty(value = "统一社会信用代码" ,index = 6)
    @ExcelProperty(value = "统一社会信用代码", index = 6)
    private String creditCode;
}