@只会写BUG 请参考这个代码
/**
* 导入数据
*
* @param uf
* @param sql
* insert into game_theme (id, state, title) values(?,?,?)
* @return
* @author QinHaiLin
* @date 2018年9月14日
*/
@NotAction
public Boolean importExcel(UploadFile uf, String sql) {
boolean b = fileService.importExcel(uf, sql);
fileService.deleteFile(uf);
return b;
}