forked from kidgrow-microservices-platform

dougang
2020-11-17 436faba10a1d0cf27953ff3ec869bdc35aee1932
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
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;
}