liusheng
2024-04-24 a894bc6373154d5cfd28b7f46df3c4cfa01a7b9b
ruoyi-admin/src/main/java/com/ruoyi/web/controller/project/ServiceExternalpersonController.java
@@ -50,7 +50,7 @@
    /**
     * 查询外围单位人员列表
     */
    //@PreAuthorize("@ss.hasPermi('project:externalperson:list')")
    //// @PreAuthorize("@ss.hasPermi('project:externalperson:list')")
    @GetMapping("/list")
    public TableDataInfo list(ServiceExternalperson serviceExternalperson) {
        logger.info("询外围单位人员列表的入参为 :{}", serviceExternalperson);
@@ -62,7 +62,7 @@
    /**
     * 导出外围单位人员列表
     */
    //@PreAuthorize("@ss.hasPermi('project:externalperson:export')")
    //// @PreAuthorize("@ss.hasPermi('project:externalperson:export')")
    @Log(title = "外围单位人员", businessType = BusinessType.EXPORT)
    @GetMapping("/export")
    public AjaxResult export(ServiceExternalperson serviceExternalperson) {
@@ -74,7 +74,7 @@
    /**
     * 获取外围单位人员详细信息
     */
    //@PreAuthorize("@ss.hasPermi('project:externalperson:query')")
    //// @PreAuthorize("@ss.hasPermi('project:externalperson:query')")
    @GetMapping(value = "/{id}")
    public AjaxResult getInfo(@PathVariable("id") Long id) {
        return AjaxResult.success(serviceExternalpersonService.getById(id));
@@ -83,7 +83,7 @@
    /**
     * 新增外围单位人员
     */
    //@PreAuthorize("@ss.hasPermi('project:externalperson:add')")
    //// @PreAuthorize("@ss.hasPermi('project:externalperson:add')")
    @Log(title = "外围单位人员", businessType = BusinessType.INSERT)
    @PostMapping("/add")
    @RepeatSubmit
@@ -100,7 +100,7 @@
    /**
     * 修改外围单位人员
     */
    //@PreAuthorize("@ss.hasPermi('project:externalperson:edit')")
    //// @PreAuthorize("@ss.hasPermi('project:externalperson:edit')")
    @Log(title = "外围单位人员", businessType = BusinessType.UPDATE)
    @PostMapping("/editZJInfo")
    @RepeatSubmit
@@ -111,7 +111,7 @@
    /**
     * 删除外围单位人员
     */
    //@PreAuthorize("@ss.hasPermi('project:externalperson:remove')")
    //// @PreAuthorize("@ss.hasPermi('project:externalperson:remove')")
    @Log(title = "外围单位人员", businessType = BusinessType.DELETE)
    @GetMapping("/remove/{ids}")
    public AjaxResult remove(@PathVariable Long[] ids) {