Compare commits
2 Commits
f847358438
...
8bd669d0f2
Author | SHA1 | Date | |
---|---|---|---|
8bd669d0f2 | |||
7c579670fe |
@ -37,7 +37,6 @@ public class RescueStreamConferenceController extends BaseController
|
|||||||
/**
|
/**
|
||||||
* 查询streamConference列表
|
* 查询streamConference列表
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('rescue:streamConference:list')")
|
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(RescueStreamConference rescueStreamConference)
|
public TableDataInfo list(RescueStreamConference rescueStreamConference)
|
||||||
{
|
{
|
||||||
@ -49,7 +48,6 @@ public class RescueStreamConferenceController extends BaseController
|
|||||||
/**
|
/**
|
||||||
* 导出streamConference列表
|
* 导出streamConference列表
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('rescue:streamConference:export')")
|
|
||||||
@Log(title = "streamConference", businessType = BusinessType.EXPORT)
|
@Log(title = "streamConference", businessType = BusinessType.EXPORT)
|
||||||
@PostMapping("/export")
|
@PostMapping("/export")
|
||||||
public void export(HttpServletResponse response, RescueStreamConference rescueStreamConference)
|
public void export(HttpServletResponse response, RescueStreamConference rescueStreamConference)
|
||||||
@ -62,7 +60,6 @@ public class RescueStreamConferenceController extends BaseController
|
|||||||
/**
|
/**
|
||||||
* 获取streamConference详细信息
|
* 获取streamConference详细信息
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('rescue:streamConference:query')")
|
|
||||||
@GetMapping(value = "/{id}")
|
@GetMapping(value = "/{id}")
|
||||||
public AjaxResult getInfo(@PathVariable("id") String id)
|
public AjaxResult getInfo(@PathVariable("id") String id)
|
||||||
{
|
{
|
||||||
@ -72,7 +69,6 @@ public class RescueStreamConferenceController extends BaseController
|
|||||||
/**
|
/**
|
||||||
* 新增streamConference
|
* 新增streamConference
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('rescue:streamConference:add')")
|
|
||||||
@Log(title = "streamConference", businessType = BusinessType.INSERT)
|
@Log(title = "streamConference", businessType = BusinessType.INSERT)
|
||||||
@PostMapping
|
@PostMapping
|
||||||
public AjaxResult add(@RequestBody RescueStreamConference rescueStreamConference)
|
public AjaxResult add(@RequestBody RescueStreamConference rescueStreamConference)
|
||||||
@ -83,7 +79,6 @@ public class RescueStreamConferenceController extends BaseController
|
|||||||
/**
|
/**
|
||||||
* 修改streamConference
|
* 修改streamConference
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('rescue:streamConference:edit')")
|
|
||||||
@Log(title = "streamConference", businessType = BusinessType.UPDATE)
|
@Log(title = "streamConference", businessType = BusinessType.UPDATE)
|
||||||
@PutMapping
|
@PutMapping
|
||||||
public AjaxResult edit(@RequestBody RescueStreamConference rescueStreamConference)
|
public AjaxResult edit(@RequestBody RescueStreamConference rescueStreamConference)
|
||||||
@ -94,7 +89,6 @@ public class RescueStreamConferenceController extends BaseController
|
|||||||
/**
|
/**
|
||||||
* 删除streamConference
|
* 删除streamConference
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('rescue:streamConference:remove')")
|
|
||||||
@Log(title = "streamConference", businessType = BusinessType.DELETE)
|
@Log(title = "streamConference", businessType = BusinessType.DELETE)
|
||||||
@DeleteMapping("/{ids}")
|
@DeleteMapping("/{ids}")
|
||||||
public AjaxResult remove(@PathVariable String[] ids)
|
public AjaxResult remove(@PathVariable String[] ids)
|
||||||
|
Loading…
Reference in New Issue
Block a user