zhongrj
2024-12-26 a1272d78844574b86645149a0d8ca257c2b8fe91
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
62
63
package org.springblade.modules.yw.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 lombok.Data;
import java.io.Serializable;
 
/**
 * 企业excel 模板
 * @author zhongrj
 * @date 2024-10-26
 */
@Data
@ColumnWidth(25)
@HeadRowHeight(20)
@ContentRowHeight(18)
public class SuppliesExcel implements Serializable {
    private static final long serialVersionUID = 1L;
 
    @ColumnWidth(20)
    @ExcelProperty("企业名称")
    private String firmName;
 
    @ColumnWidth(20)
    @ExcelProperty("仓库名称")
    private String name;
 
    @ExcelProperty("经度")
    private String lng;
 
    @ColumnWidth(20)
    @ExcelProperty("纬度")
    private String lat;
 
    @ExcelProperty("位置")
    private String address;
 
    /**
     * 负责人
     */
    @ExcelProperty("负责人")
    private String perInCha;
    /**
     * 负责人电话
     */
    @ExcelProperty("负责人电话")
    private String perInChaPho;
    /**
     * 联系人姓名
     */
    @ExcelProperty("联系人")
    private String conPers;
    /**
     * 联系人电话
     */
    @ExcelProperty("联系人电话")
    private String conPersPho;
 
    @ExcelProperty("备注")
    private String remark;
}