zhanghl
2025-05-08 3f8ae1f3943485c8d38c7fcfb5349a1dc0f04c74
aps-modules/aps-core/src/main/java/com/aps/core/controller/ApsPlatePlanTempController.java
@@ -29,7 +29,7 @@
 * @date 2025-04-08
 */
@RestController
@RequestMapping("/ApsPlatePlanTemp")
@RequestMapping("/apsPlatePlanTemp")
public class ApsPlatePlanTempController extends BaseController
{
    @Autowired
@@ -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)