| | |
| | | /** |
| | | * 查询方案任务重发配置列表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemetaskrepeatconfig:list')") |
| | | //@PreAuthorize("@ss.hasPermi('smartor:schemetaskrepeatconfig:list')") |
| | | @PostMapping("/list") |
| | | public TableDataInfo list(@RequestBody SchemeTaskrepeatconfig schemeTaskrepeatconfig) { |
| | | startPage(); |
| | |
| | | /** |
| | | * 导出方案任务重发配置列表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemetaskrepeatconfig:export')") |
| | | //@PreAuthorize("@ss.hasPermi('smartor:schemetaskrepeatconfig:export')") |
| | | @Log(title = "方案任务重发配置", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | public void export(HttpServletResponse response, SchemeTaskrepeatconfig schemeTaskrepeatconfig) { |
| | |
| | | /** |
| | | * 获取方案任务重发配置详细信息 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemetaskrepeatconfig:query')") |
| | | //@PreAuthorize("@ss.hasPermi('smartor:schemetaskrepeatconfig:query')") |
| | | @GetMapping(value = "/{id}") |
| | | public AjaxResult getInfo(@PathVariable("id") Long id) { |
| | | return success(schemeTaskrepeatconfigService.selectSchemeTaskrepeatconfigById(id)); |
| | |
| | | /** |
| | | * 新增方案任务重发配置 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemetaskrepeatconfig:add')") |
| | | //@PreAuthorize("@ss.hasPermi('smartor:schemetaskrepeatconfig:add')") |
| | | @Log(title = "方案任务重发配置", businessType = BusinessType.INSERT) |
| | | @PostMapping("/add") |
| | | public AjaxResult add(@RequestBody SchemeTaskrepeatconfig schemeTaskrepeatconfig) { |
| | |
| | | /** |
| | | * 修改方案任务重发配置 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemetaskrepeatconfig:edit')") |
| | | //@PreAuthorize("@ss.hasPermi('smartor:schemetaskrepeatconfig:edit')") |
| | | @Log(title = "方案任务重发配置", businessType = BusinessType.UPDATE) |
| | | @PostMapping("/edit") |
| | | public AjaxResult edit(@RequestBody SchemeTaskrepeatconfig schemeTaskrepeatconfig) { |
| | |
| | | /** |
| | | * 删除方案任务重发配置 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemetaskrepeatconfig:remove')") |
| | | //@PreAuthorize("@ss.hasPermi('smartor:schemetaskrepeatconfig:remove')") |
| | | @Log(title = "方案任务重发配置", businessType = BusinessType.DELETE) |
| | | @GetMapping("/remove/{ids}") |
| | | public AjaxResult remove(@PathVariable Long[] ids) { |