package org.springblade.modules.taskPlaceRectification.excel; import com.alibaba.excel.annotation.ExcelIgnore; 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.modules.patrol.vo.PatrolRecordVO; import org.springblade.modules.place.vo.PlacePoiLabelVO; import java.util.List; @Data @ColumnWidth(25) @HeadRowHeight(20) @ContentRowHeight(18) public class PlaceRectificationsExcel { private static final long serialVersionUID = 1L; @ExcelProperty( value = "场所类别") 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; }