|
@ -8,6 +8,7 @@ import org.springframework.beans.factory.annotation.Autowired;
|
8
|
8
|
import org.springframework.web.bind.annotation.PathVariable;
|
9
|
9
|
import org.springframework.web.bind.annotation.RequestBody;
|
10
|
10
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
11
|
import org.springframework.web.bind.annotation.PostMapping;
|
11
|
12
|
import org.springframework.web.bind.annotation.RequestParam;
|
12
|
13
|
import org.springframework.web.bind.annotation.RestController;
|
13
|
14
|
|
|
@ -90,7 +91,6 @@ public class MeetingController {
|
90
|
91
|
// }
|
91
|
92
|
@PostMapping("/delete")
|
92
|
93
|
@RequiresPermissions("admin:meeting:delete")
|
93
|
|
@ApiOperation("删除")
|
94
|
94
|
public R delete(@RequestBody Long[] ids){
|
95
|
95
|
meetingService.delete(ids);
|
96
|
96
|
return R.ok();
|
|
@ -98,7 +98,6 @@ public class MeetingController {
|
98
|
98
|
|
99
|
99
|
@PostMapping("/status")
|
100
|
100
|
@RequiresPermissions("admin:meeting:status")
|
101
|
|
@ApiOperation("改变审核状态")
|
102
|
101
|
public R status(@RequestBody Map<String, Object> param){
|
103
|
102
|
Long id = Long.valueOf(param.get("id").toString());
|
104
|
103
|
Integer status = Integer.valueOf(param.get("status").toString());
|