|  |  |  | 
|---|
|  |  |  | * 查询【请填写功能名称】列表 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @ApiOperation("查询【请填写功能名称】列表") | 
|---|
|  |  |  | @PreAuthorize("@ss.hasPermi('smartor:dept:list')") | 
|---|
|  |  |  | //@PreAuthorize("@ss.hasPermi('smartor:dept:list')") | 
|---|
|  |  |  | @GetMapping("/list") | 
|---|
|  |  |  | public TableDataInfo list(SysUserDept sysUserDept) | 
|---|
|  |  |  | { | 
|---|
|  |  |  | 
|---|
|  |  |  | * 导出【请填写功能名称】列表 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @ApiOperation("导出【请填写功能名称】列表") | 
|---|
|  |  |  | @PreAuthorize("@ss.hasPermi('smartor:dept:export')") | 
|---|
|  |  |  | //@PreAuthorize("@ss.hasPermi('smartor:dept:export')") | 
|---|
|  |  |  | @Log(title = "【请填写功能名称】", businessType = BusinessType.EXPORT) | 
|---|
|  |  |  | @PostMapping("/export") | 
|---|
|  |  |  | public void export(HttpServletResponse response, SysUserDept sysUserDept) | 
|---|
|  |  |  | 
|---|
|  |  |  | * 获取【请填写功能名称】详细信息 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @ApiOperation("获取【请填写功能名称】详细信息") | 
|---|
|  |  |  | @PreAuthorize("@ss.hasPermi('smartor:dept:query')") | 
|---|
|  |  |  | //@PreAuthorize("@ss.hasPermi('smartor:dept:query')") | 
|---|
|  |  |  | @GetMapping(value = "/getInfo/{id}") | 
|---|
|  |  |  | public AjaxResult getInfo(@PathVariable("id") Long id) | 
|---|
|  |  |  | { | 
|---|
|  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 新增【请填写功能名称】 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @PreAuthorize("@ss.hasPermi('smartor:dept:add')") | 
|---|
|  |  |  | //@PreAuthorize("@ss.hasPermi('smartor:dept:add')") | 
|---|
|  |  |  | @ApiOperation("导出【请填写功能名称】列表") | 
|---|
|  |  |  | @Log(title = "【请填写功能名称】", businessType = BusinessType.INSERT) | 
|---|
|  |  |  | @PostMapping("/add") | 
|---|
|  |  |  | public AjaxResult add(@RequestBody SysUserDept sysUserDept) | 
|---|
|  |  |  | 
|---|
|  |  |  | * 修改【请填写功能名称】 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @ApiOperation("修改【请填写功能名称】") | 
|---|
|  |  |  | @PreAuthorize("@ss.hasPermi('smartor:dept:edit')") | 
|---|
|  |  |  | //@PreAuthorize("@ss.hasPermi('smartor:dept:edit')") | 
|---|
|  |  |  | @Log(title = "【请填写功能名称】", businessType = BusinessType.UPDATE) | 
|---|
|  |  |  | @PostMapping("/edit") | 
|---|
|  |  |  | public AjaxResult edit(@RequestBody SysUserDept sysUserDept) | 
|---|
|  |  |  | 
|---|
|  |  |  | * 删除【请填写功能名称】 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @ApiOperation("删除【请填写功能名称】") | 
|---|
|  |  |  | @PreAuthorize("@ss.hasPermi('smartor:dept:remove')") | 
|---|
|  |  |  | //@PreAuthorize("@ss.hasPermi('smartor:dept:remove')") | 
|---|
|  |  |  | @Log(title = "【请填写功能名称】", businessType = BusinessType.DELETE) | 
|---|
|  |  |  | @GetMapping("/remove/{ids}") | 
|---|
|  |  |  | public AjaxResult remove(@PathVariable Long[] ids) | 
|---|