huangjiayang
2025-05-15 dbcc9f8992c97b84aa6ae0a381c807ba6239ae2c
aps-modules/aps-core/src/main/java/com/aps/core/controller/ApsPlatePlanTempController.java
@@ -38,6 +38,7 @@
    /**
     * 查询钣金计划临时表列表
     */
    @RequiresPermissions("apsPlatePlan:import")
    @GetMapping("/list")
    public TableDataInfo list(ApsPlatePlanTemp apsPlatePlanTemp)
    {
@@ -48,7 +49,7 @@
    /**
     * 导出钣金计划临时表列表
     */
    @RequiresPermissions("ApsPlatePlan:ApsPlatePlanTemp:export")
    @RequiresPermissions("apsPlatePlanTemp:export")
    @Log(title = "钣金计划临时表", businessType = BusinessType.EXPORT)
    @PostMapping("/export")
    public void export(HttpServletResponse response, ApsPlatePlanTemp apsPlatePlanTemp)
@@ -61,7 +62,7 @@
    /**
     * 获取钣金计划临时表详细信息
     */
    @RequiresPermissions("ApsPlatePlan:ApsPlatePlanTemp:query")
    @RequiresPermissions("apsPlatePlanTemp:query")
    @GetMapping(value = "/{id}")
    public AjaxResult getInfo(@PathVariable("id") String id)
    {
@@ -71,7 +72,7 @@
    /**
     * 新增钣金计划临时表
     */
    @RequiresPermissions("ApsPlatePlan:ApsPlatePlanTemp:add")
    @RequiresPermissions("apsPlatePlanTemp:add")
    @Log(title = "钣金计划临时表", businessType = BusinessType.INSERT)
    @PostMapping
    public AjaxResult add(@RequestBody ApsPlatePlanTemp apsPlatePlanTemp)
@@ -82,7 +83,7 @@
    /**
     * 修改钣金计划临时表
     */
    @RequiresPermissions("ApsPlatePlan:ApsPlatePlanTemp:edit")
    @RequiresPermissions("apsPlatePlanTemp:edit")
    @Log(title = "钣金计划临时表", businessType = BusinessType.UPDATE)
    @PutMapping
    public AjaxResult edit(@RequestBody ApsPlatePlanTemp apsPlatePlanTemp)
@@ -93,7 +94,7 @@
    /**
     * 删除钣金计划临时表
     */
    @RequiresPermissions("ApsPlatePlan:ApsPlatePlanTemp:remove")
    @RequiresPermissions("apsPlatePlanTemp:remove")
    @Log(title = "钣金计划临时表", businessType = BusinessType.DELETE)
   @DeleteMapping("/{ids}")
    public AjaxResult remove(@PathVariable String[] ids)