package com.css.common.excel;
import java.util.ArrayList;
import java.util.List;
@SuppressWarnings("serial")
public class QuesExcelExportUtil extends AbstractExcelExport {
@SuppressWarnings("unchecked")
public QuesExcelExportUtil(String contextTitle, List columnContextList)
throws Exception {
super(contextTitle, columnContextList);
}
@Override
@SuppressWarnings("unchecked")
public List getColumnFiledList() {
List columnFiledList = new ArrayList();
columnFiledList.add("content");
return columnFiledList;
}
@Override
@SuppressWarnings("unchecked")
public List getColumnNameList() {
List columnNameList = new ArrayList();
columnNameList.add("问题");
return columnNameList;
}
}