xiangpei
2024-09-04 68a32aa05a22070c048d67ab056f40be86222450
ycl-server/src/main/java/com/ycl/platform/controller/ContractScoreController.java
@@ -13,6 +13,7 @@
import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.web.bind.annotation.*;
import java.util.Arrays;
import java.util.List;
/**
@@ -23,18 +24,16 @@
 */
@RestController
@RequestMapping("/contract/score")
public class ContractScoreController extends BaseController
{
public class ContractScoreController extends BaseController {
    @Autowired
    private IContractScoreService defaultScoreService;
    /**
     * 查询合同打分列表
     */
    @PreAuthorize("@ss.hasPermi('platform:score:list')")
    @GetMapping("/list")
    public TableDataInfo list(ContractScore contractScore)
    {
    @PreAuthorize("@ss.hasPermi('contract:score:list')")
    @PostMapping("/list")
    public TableDataInfo list(@RequestBody ContractScore contractScore) {
        startPage();
        List<ContractScore> list = defaultScoreService.selectDefaultScoreList(contractScore);
        return getDataTable(list);
@@ -43,56 +42,60 @@
    /**
     * 导出合同打分列表
     */
    @PreAuthorize("@ss.hasPermi('platform:score:export')")
    @Log(title = "合同打分", businessType = BusinessType.EXPORT)
    @PreAuthorize("@ss.hasPermi('contract:score:export')")
    @PostMapping("/export")
    public void export(HttpServletResponse response, ContractScore contractScore)
    {
    public void export(HttpServletResponse response, ContractScore contractScore) {
        List<ContractScore> list = defaultScoreService.selectDefaultScoreList(contractScore);
        ExcelUtil<ContractScore> util = new ExcelUtil<ContractScore>(ContractScore.class);
        ExcelUtil<ContractScore> util = new ExcelUtil<>(ContractScore.class);
        util.exportExcel(response, list, "合同打分数据");
    }
    /**
     * 获取合同打分详细信息
     */
    @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.selectDefaultScoreById(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)
    {
        return toAjax(defaultScoreService.insertDefaultScore(contractScore));
    public AjaxResult add(@RequestBody ContractScore contractScore) {
        return toAjax(defaultScoreService.save(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)
    {
        return toAjax(defaultScoreService.updateDefaultScore(contractScore));
    public AjaxResult edit(@RequestBody ContractScore contractScore) {
        return toAjax(defaultScoreService.updateById(contractScore));
    }
    /**
     * 合同打分审核
     */
    @PreAuthorize("@ss.hasPermi('contract:score:audit')")
    @Log(title = "合同打分审核", businessType = BusinessType.UPDATE)
    @PostMapping("/auditing")
    public AjaxResult audit(@RequestBody ContractScore contractScore) {
        return toAjax(defaultScoreService.audit(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)
    {
        return toAjax(defaultScoreService.deleteDefaultScoreByIds(ids));
    @DeleteMapping("/{ids}")
    public AjaxResult remove(@PathVariable Long[] ids) {
        return toAjax(defaultScoreService.removeBatchByIds(Arrays.asList(ids)));
    }
}