| | |
| | | import com.ycl.system.AjaxResult; |
| | | import com.ycl.system.controller.BaseController; |
| | | import com.ycl.system.page.TableDataInfo; |
| | | import com.ycl.utils.poi.ExcelUtil; |
| | | import enumeration.BusinessType; |
| | | import jakarta.servlet.http.HttpServletResponse; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.security.access.prepost.PreAuthorize; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import java.io.IOException; |
| | |
| | | } |
| | | |
| | | /** |
| | | * 查询考核积分折线图 |
| | | */ |
| | | // @PreAuthorize("@ss.hasPermi('check:score:chart')") |
| | | @GetMapping("/chart") |
| | | public AjaxResult selectCheckScoreChart(CheckScore checkScore) |
| | | { |
| | | Map<Long, List<CheckScore>> deptMap = checkScoreService.selectCheckScoreChart(checkScore); |
| | | return success(deptMap); |
| | | } |
| | | |
| | | /** |
| | | * 区县详情列表 |
| | | */ |
| | | // @PreAuthorize("@ss.hasPermi('check:score:list')") |