package com.kidgrow.oprationcenter.model;
|
|
import cn.afterturn.easypoi.excel.annotation.Excel;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
/**
|
* 石家庄喜高科技有限责任公司 版权所有 © Copyright 2020<br>
|
*
|
* @version 1.0
|
* @Description: 筛查机构信息表<br>
|
* @Project: 用户中心<br>
|
* @CreateDate: Created in 2020-10-12 17:10:31 <br>
|
* @Author: <a href="78125310@kidgrow.com">dougang</a>
|
*/
|
@Data
|
public class ScreeningOrganizationExcel implements Serializable {
|
private static final long serialVersionUID = -5886012896705137070L;
|
|
/**
|
* 机构名称
|
*/
|
@Excel(name = "机构名称", height = 20, width = 30, isImportField = "true_st")
|
private String organizationName;
|
/**
|
* 联系人
|
*/
|
@Excel(name = "联系人", height = 20, width = 30, isImportField = "true_st")
|
private String contactName;
|
/**
|
* 联系电话
|
*/
|
@Excel(name = "电话", height = 20, width = 30, isImportField = "true_st")
|
private String contactNumber;
|
/**
|
* 机构简称
|
*/
|
@Excel(name = "机构简称", height = 20, width = 30, isImportField = "true_st")
|
private String abbreviation;
|
|
/**
|
* 机构编码
|
*/
|
@Excel(name = "编码", height = 20, width = 30, isImportField = "true_st")
|
private String organizationNo;
|
}
|