|  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 查询问卷异常列表 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @PreAuthorize("@ss.hasPermi('smartor:svyexception:list')") | 
|---|
|  |  |  | //@PreAuthorize("@ss.hasPermi('smartor:svyexception:list')") | 
|---|
|  |  |  | @PostMapping("/list") | 
|---|
|  |  |  | public TableDataInfo list(@RequestBody SvyLibException svyLibException) | 
|---|
|  |  |  | { | 
|---|
|  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 导出问卷异常列表 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @PreAuthorize("@ss.hasPermi('smartor:svyexception:export')") | 
|---|
|  |  |  | //@PreAuthorize("@ss.hasPermi('smartor:svyexception:export')") | 
|---|
|  |  |  | @Log(title = "问卷异常", businessType = BusinessType.EXPORT) | 
|---|
|  |  |  | @PostMapping("/export") | 
|---|
|  |  |  | public void export(HttpServletResponse response, SvyLibException svyLibException) | 
|---|
|  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 获取问卷异常详细信息 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @PreAuthorize("@ss.hasPermi('smartor:svyexception:query')") | 
|---|
|  |  |  | //@PreAuthorize("@ss.hasPermi('smartor:svyexception:query')") | 
|---|
|  |  |  | @GetMapping(value = "/{ecid}") | 
|---|
|  |  |  | public AjaxResult getInfo(@PathVariable("ecid") Long ecid) | 
|---|
|  |  |  | { | 
|---|
|  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 新增问卷异常 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @PreAuthorize("@ss.hasPermi('smartor:svyexception:add')") | 
|---|
|  |  |  | //@PreAuthorize("@ss.hasPermi('smartor:svyexception:add')") | 
|---|
|  |  |  | @Log(title = "问卷异常", businessType = BusinessType.INSERT) | 
|---|
|  |  |  | @PostMapping("/add") | 
|---|
|  |  |  | public AjaxResult add(@RequestBody SvyLibException svyLibException) | 
|---|
|  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 修改问卷异常 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @PreAuthorize("@ss.hasPermi('smartor:svyexception:edit')") | 
|---|
|  |  |  | //@PreAuthorize("@ss.hasPermi('smartor:svyexception:edit')") | 
|---|
|  |  |  | @Log(title = "问卷异常", businessType = BusinessType.UPDATE) | 
|---|
|  |  |  | @PostMapping("/edit") | 
|---|
|  |  |  | public AjaxResult edit(@RequestBody SvyLibException svyLibException) | 
|---|
|  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 删除问卷异常 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @PreAuthorize("@ss.hasPermi('smartor:svyexception:remove')") | 
|---|
|  |  |  | //@PreAuthorize("@ss.hasPermi('smartor:svyexception:remove')") | 
|---|
|  |  |  | @Log(title = "问卷异常", businessType = BusinessType.DELETE) | 
|---|
|  |  |  | @GetMapping("/remove/{ecids}") | 
|---|
|  |  |  | public AjaxResult remove(@PathVariable Long[] ecids) | 
|---|