|
@@ -65,6 +65,13 @@ public class TestController implements QueryController<UserEntity, String, Query
|
|
|
return ResponseMessage.ok(model);
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+ @PutMapping("/testUpdateBatch")
|
|
|
+ public ResponseMessage<List<UserModel>> testUpdate(@RequestBody List<UserModel> model) {
|
|
|
+ return ResponseMessage.ok(model);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
@PutMapping("/test/testPersonnel")
|
|
|
public ResponseMessage<PersonnelAuthorization> testPersonnel() {
|
|
|
return ResponseMessage.ok(PersonnelAuthorization.current().get());
|