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;
|
}
|