Merge remote-tracking branch 'origin/test' into dev
This commit is contained in:
commit
c3d4688268
@ -72,6 +72,12 @@ public class SimulationCommonController {
|
||||
.collect(Collectors.toList());
|
||||
}
|
||||
|
||||
@GetMapping("/{id}/member/playedBy/{userId}")
|
||||
public SimulationMemberVO queryUserPlayedMember(@PathVariable String id, @PathVariable String userId) {
|
||||
return this.simulationManager.getById(id)
|
||||
.getSimulationMemberByUserId(userId).convertToVO();
|
||||
}
|
||||
|
||||
@PostMapping("/{id}/member/{memberId}/operate/{type}")
|
||||
public Object operate(@PathVariable String id, @PathVariable String memberId,
|
||||
@PathVariable String type, @RequestBody Map<String, Object> params) {
|
||||
|
Loading…
Reference in New Issue
Block a user