龚焕茏
2024-04-30 a90d4c73e67b27338e941f88673fd17fe8b2b5ff
ycl-server/src/main/java/com/ycl/platform/controller/CalculateRuleController.java
@@ -39,6 +39,26 @@
    }
    /**
     * 根据合同id查询违约规则列表
     */
    @PreAuthorize("@ss.hasPermi('system:rule:query')")
    @GetMapping("/getRuleListByContractId")
    public AjaxResult getRuleListByContractId(Integer contractId)
    {
        return success(defaultRuleService.getRuleListByContractId(contractId));
    }
    /**
     * 根据运维单位查询违约规则列表
     */
    @PreAuthorize("@ss.hasPermi('system:rule:query')")
    @GetMapping("/getRuleListByUnitId")
    public AjaxResult getRuleListByUnitId(Integer unitId)
    {
        return success(defaultRuleService.getRuleListByUnitId(unitId));
    }
    /**
     * 导出违约规则列表
     */
    @PreAuthorize("@ss.hasPermi('system:rule:export')")