|
|
|
@ -8,12 +8,14 @@ import com.ruoyi.common.enums.BusinessType;
|
|
|
|
|
import com.ruoyi.common.utils.poi.ExcelUtil;
|
|
|
|
|
import com.ruoyi.system.domain.TdCheck;
|
|
|
|
|
import com.ruoyi.system.service.ITdCheckService;
|
|
|
|
|
import com.ruoyi.web.controller.manager.SysAreaManager;
|
|
|
|
|
import org.apache.shiro.authz.annotation.RequiresPermissions;
|
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
|
import org.springframework.stereotype.Controller;
|
|
|
|
|
import org.springframework.ui.ModelMap;
|
|
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
|
|
import java.util.List;
|
|
|
|
|
import java.util.Objects;
|
|
|
|
|
|
|
|
|
@ -24,6 +26,9 @@ public class TdCheckResultController extends BaseController {
|
|
|
|
|
@Autowired
|
|
|
|
|
private ITdCheckService tdCheckService;
|
|
|
|
|
|
|
|
|
|
@Resource
|
|
|
|
|
private SysAreaManager sysAreaManager;
|
|
|
|
|
|
|
|
|
|
@RequiresPermissions("system:checkresult:view")
|
|
|
|
|
@GetMapping()
|
|
|
|
|
public String checkresult()
|
|
|
|
@ -54,6 +59,10 @@ public class TdCheckResultController extends BaseController {
|
|
|
|
|
public AjaxResult export(TdCheck tdCheck)
|
|
|
|
|
{
|
|
|
|
|
List<TdCheck> list = tdCheckService.selectTdCheckList(tdCheck);
|
|
|
|
|
list.forEach(tdCheck1 -> {
|
|
|
|
|
tdCheck1.setFramework(sysAreaManager.getAreaName(tdCheck1.getFramework()));
|
|
|
|
|
tdCheck1.setArea(sysAreaManager.getAreaName(tdCheck1.getArea()));
|
|
|
|
|
});
|
|
|
|
|
ExcelUtil<TdCheck> util = new ExcelUtil<TdCheck>(TdCheck.class);
|
|
|
|
|
return util.exportExcel(list, "检查结果管理数据");
|
|
|
|
|
}
|
|
|
|
|