linwe
2024-05-29 c10d6358b9f014375a13821465bc978d0c0da22e
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
package org.springblade.modules.place.excel;
 
import com.alibaba.excel.annotation.ExcelProperty;
import com.alibaba.excel.annotation.write.style.ColumnWidth;
import com.alibaba.excel.annotation.write.style.ContentRowHeight;
import com.alibaba.excel.annotation.write.style.HeadRowHeight;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.springblade.common.excel.ExcelDictConverter;
import org.springblade.common.excel.ExcelDictItemLabel;
 
import java.io.Serializable;
 
/**
 * HouseExcel
 *
 * @author Chill
 */
@Data
@ColumnWidth(25)
@HeadRowHeight(20)
@ContentRowHeight(18)
public class NinePlaceExcel implements Serializable {
 
    private static final long serialVersionUID = 2L;
 
    /** 街道名称 */
    @ExcelProperty( "地区")
    private String townStreetName;
 
    @ExcelProperty(value = "场所名称")
    private String placeName;
 
    @ExcelProperty(value = "地址")
    private String addressName;
 
    @ExcelProperty( value = "场所类别")
    private String nineType;
 
    @ExcelProperty(value = "场所负责人")
    private String principal;
 
    @ExcelProperty(value = "身份证信息")
    private String principalIdCard;
 
    @ExcelProperty(value = "联系方式")
    private String principalPhone;
 
    @ExcelProperty(value = "辖区派出所")
    private String deptName;
 
 
    @ExcelProperty(value = "责任民警")
    private String policeName;
 
    @ExcelProperty(value = "责任民警联系方式")
    private String policePhone;
 
 
 
}