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 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 PlaceExcel implements Serializable {
|
|
private static final long serialVersionUID = 2L;
|
|
/** 门牌地址编码 */
|
@ExcelProperty( "门牌地址编码")
|
private String houseCode;
|
|
/** 街道名称 */
|
@ExcelProperty( "街道名称")
|
private String streetName;
|
|
/** 社区名称 */
|
@ExcelProperty( "社区名称")
|
private String communityName;
|
|
/** 网格名称 */
|
@ExcelProperty( "网格名称")
|
private String gridName;
|
|
/** 经营者 */
|
@ColumnWidth(15)
|
@ExcelProperty( "经营者")
|
private String name;
|
|
/** 联系电话 */
|
@ColumnWidth(15)
|
@ExcelProperty( "联系电话")
|
private String phoneNumber;
|
|
/** 企业(店铺)名称 */
|
@ColumnWidth(25)
|
@ExcelProperty( "企业(店铺)名称")
|
private String placeName;
|
|
/** 九小场所类型 */
|
@ExcelProperty( value = "九小场所类型",converter = ExcelDictConverter.class)
|
@ExcelDictItemLabel(type = "nineType")
|
private String nineType;
|
|
/** 标签分类代码 */
|
@ExcelProperty( "标签分类代码")
|
private String labelCode;
|
|
/** 备注 */
|
@ExcelProperty( "备注")
|
private String remark;
|
|
}
|