com.zhongweixian.excel.view.AbstractExcelView Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of poi-api Show documentation
Show all versions of poi-api Show documentation
poi-api project for Spring Boot
The newest version!
package com.zhongweixian.excel.view;
/**
* @author : caoliang
*
* @date : 2017/11/6:下午2:00
*/
public abstract class AbstractExcelView extends BaseView {
public static final String CONTENT_TYPE = "application/vnd.ms-excel";
public static final String HSSF = ".xls";
public static final String XSSF = ".xlsx";
}