package org.springblade.modules.taskPlaceRectification.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.ExcelDictItem;
|
import org.springblade.common.excel.ExcelDictItemLabel;
|
|
@Data
|
@ColumnWidth(25)
|
@HeadRowHeight(20)
|
@ContentRowHeight(18)
|
public class PlaceRectificationsExcel {
|
private static final long serialVersionUID = 1L;
|
@ExcelProperty( value = "场所类别",converter = ExcelDictConverter.class)
|
@ExcelDictItem(type = "nineType")
|
@ExcelDictItemLabel(type = "nineType")
|
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;
|
|
|
|
}
|