linwei
2024-02-05 9217ec61bae4e02be35f26c84b4993d3d9f97d86
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
package org.springblade.modules.taskPlaceRectification.excel;
 
import com.alibaba.excel.annotation.ExcelIgnore;
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.modules.patrol.vo.PatrolRecordVO;
import org.springblade.modules.place.vo.PlacePoiLabelVO;
 
import java.util.List;
 
@Data
@ColumnWidth(25)
@HeadRowHeight(20)
@ContentRowHeight(18)
public class PlaceRectificationsExcel {
    private static final long serialVersionUID = 1L;
 
    @ExcelProperty( value = "场所类别")
    private String nineType;
 
    @ExcelProperty(value = "场所名称")
    private String placeName;
 
    @ExcelProperty(value = "场所地址")
    private String placeAddress;
 
    @ExcelProperty(value = "标准地址编码")
    private String houseCode;
 
    @ExcelProperty(value = "场所标准地址")
    private String addressName;
 
    @ExcelProperty(value = "场所负责人")
    private String principal;
 
    @ExcelProperty(value = "负责人电话")
    private String principalPhone;
 
    @ExcelProperty(value = "限期整改时间")
    private String rectificationEndTime;
 
    @ExcelProperty(value = "督促整改责任人及联系方式")
    private String police;
 
    @ExcelProperty(value = "责任人姓名及联系方式")
    private String principals;
 
 
 
}