|
|
@@ -215,6 +215,7 @@ public class ProjectTaskController extends BaseController {
|
|
|
@ApiOperation("导出项目打卡列表")
|
|
|
@Log(title = "项目日志管理", businessType = BusinessType.EXPORT)
|
|
|
public void listRecordExport(HttpServletResponse response, ProjectStaffRecordInput in){
|
|
|
+ in.setPageSize(999999);
|
|
|
List<ProjectStaffRecordOut> list=projectStaffRecordService.listRecord(in);
|
|
|
ExcelUtil<ProjectStaffRecordOut> util = new ExcelUtil<>(ProjectStaffRecordOut.class);
|
|
|
util.exportExcel(response, list, "项目研发日志列表");
|
|
|
@@ -332,6 +333,7 @@ public class ProjectTaskController extends BaseController {
|
|
|
@Log(title = "项目管理", businessType = BusinessType.EXPORT)
|
|
|
public void export(HttpServletResponse response,ProjectListInput in)
|
|
|
{
|
|
|
+ in.setPageSize(999999);
|
|
|
List<ProjectTaskListOut> list=projectTaskService.list(in);
|
|
|
ExcelUtil<ProjectTaskListOut> util = new ExcelUtil<>(ProjectTaskListOut.class);
|
|
|
util.exportExcel(response, list, "项目列表");
|