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( "所属社区")
|
private String neiName;
|
|
@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;
|
|
|
|
}
|