group-members.service.ts 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /*
  2. * Copyright [2022] [MaxKey of copyright http://www.maxkey.top]
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. import { HttpClient } from '@angular/common/http';
  17. import { Injectable } from '@angular/core';
  18. import { NzSafeAny } from 'ng-zorro-antd/core/types';
  19. import { Observable } from 'rxjs';
  20. import { GroupMembers } from '../entity/GroupMembers';
  21. import { Message } from '../entity/Message';
  22. import { PageResults } from '../entity/PageResults';
  23. import { BaseService } from './base.service';
  24. @Injectable({
  25. providedIn: 'root'
  26. })
  27. export class GroupMembersService extends BaseService<GroupMembers> {
  28. constructor(private _httpClient: HttpClient) {
  29. super(_httpClient, '/access/groupmembers');
  30. this.server.urls.member = '/memberIn';
  31. this.server.urls.memberOut = '/memberNotIn';
  32. }
  33. noMember(params: NzSafeAny): Observable<Message<PageResults>> {
  34. return this.http.get<Message<PageResults>>(`${this.server.urls.base}/noMember`, {
  35. params: this.parseParams(params)
  36. });
  37. }
  38. addMember2Groups(body: any): Observable<Message<PageResults>> {
  39. return this.http.post<Message<PageResults>>(`${`${this.server.urls.base}/addMember2Groups`}`, body);
  40. }
  41. }