| | |
| | | /** |
| | | * 查询合同打分列表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('platform:score:list')") |
| | | @PreAuthorize("@ss.hasPermi('contract:score:list')") |
| | | @PostMapping("/list") |
| | | public TableDataInfo list(@RequestBody ContractScore contractScore) { |
| | | startPage(); |
| | |
| | | /** |
| | | * 导出合同打分列表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('platform:score:export')") |
| | | @PreAuthorize("@ss.hasPermi('contract:score:export')") |
| | | @PostMapping("/export") |
| | | public void export(HttpServletResponse response, ContractScore contractScore) { |
| | | List<ContractScore> list = defaultScoreService.selectDefaultScoreList(contractScore); |
| | |
| | | /** |
| | | * 获取合同打分详细信息 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('platform:score:query')") |
| | | @PreAuthorize("@ss.hasPermi('contract:score:query')") |
| | | @GetMapping(value = "/{id}") |
| | | public AjaxResult getInfo(@PathVariable("id") Long id) { |
| | | return success(defaultScoreService.getById(id)); |
| | |
| | | /** |
| | | * 新增合同打分 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('platform:score:add')") |
| | | @PreAuthorize("@ss.hasPermi('contract:score:add')") |
| | | @Log(title = "合同打分", businessType = BusinessType.INSERT) |
| | | @PostMapping |
| | | public AjaxResult add(@RequestBody ContractScore contractScore) { |
| | |
| | | /** |
| | | * 修改合同打分 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('platform:score:edit')") |
| | | @PreAuthorize("@ss.hasPermi('contract:score:edit')") |
| | | @Log(title = "合同打分", businessType = BusinessType.UPDATE) |
| | | @PutMapping |
| | | public AjaxResult edit(@RequestBody ContractScore contractScore) { |
| | |
| | | /** |
| | | * 合同打分审核 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('platform:score:audit')") |
| | | @PreAuthorize("@ss.hasPermi('contract:score:audit')") |
| | | @Log(title = "合同打分审核", businessType = BusinessType.UPDATE) |
| | | @PostMapping("/auditing") |
| | | public AjaxResult audit(@RequestBody ContractScore contractScore) { |
| | |
| | | /** |
| | | * 删除合同打分 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('platform:score:remove')") |
| | | @PreAuthorize("@ss.hasPermi('contract:score:remove')") |
| | | @Log(title = "合同打分", businessType = BusinessType.DELETE) |
| | | @DeleteMapping("/{ids}") |
| | | public AjaxResult remove(@PathVariable Long[] ids) { |