|
|
|
@ -37,9 +37,7 @@ import java.util.*;
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
@Slf4j
|
|
|
|
@Slf4j
|
|
|
|
public class JeecgController<T, S extends IService<T>> {
|
|
|
|
public class JeecgController<T, S extends IService<T>> {
|
|
|
|
/**
|
|
|
|
/**issues/2933 JeecgController注入service时改用protected修饰,能避免重复引用service*/
|
|
|
|
* issues/2933 JeecgController注入service时改用protected修饰,能避免重复引用service
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
@Autowired
|
|
|
|
@Autowired
|
|
|
|
protected S service;
|
|
|
|
protected S service;
|
|
|
|
@Resource
|
|
|
|
@Resource
|
|
|
|
@ -77,7 +75,6 @@ public class JeecgController<T, S extends IService<T>> {
|
|
|
|
mv.addObject(NormalExcelConstants.DATA_LIST, exportList);
|
|
|
|
mv.addObject(NormalExcelConstants.DATA_LIST, exportList);
|
|
|
|
return mv;
|
|
|
|
return mv;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* 根据每页sheet数量导出多sheet
|
|
|
|
* 根据每页sheet数量导出多sheet
|
|
|
|
*
|
|
|
|
*
|
|
|
|
|