| | |
| | | @PostMapping("/submit") |
| | | @ApiOperationSupport(order = 6) |
| | | @ApiOperation(value = "新增或修改", notes = "传入chatgroupc") |
| | | public R submit(@Valid @RequestBody Chatgroupc chatgroupc) { |
| | | public R submit(@Valid Chatgroupc chatgroupc) { |
| | | return R.status(chatgroupcService.saveOrUpdate(chatgroupc)); |
| | | } |
| | | |
| | |
| | | * @return |
| | | */ |
| | | @PostMapping("/selectList") |
| | | public R selectList(String groupid) { |
| | | return R.data(chatgroupcService.selectList(groupid)); |
| | | public R selectList(String gid) { |
| | | return R.data(chatgroupcService.selectList(gid)); |
| | | } |
| | | |
| | | } |