oilSdkAuthor.ts 694 B

12345678910111213141516171819202122232425
  1. import {ContentType, HttpClient, RequestParams} from "/@/api/admin/http-client";
  2. import {oilSdkAuthorDtoResult, oilSdkAuthorPostPageDto} from "/@/api/admin/deviceAuthorization/oilSdkAuthorDto";
  3. export class OilSdkAuthor<SecurityDataType = unknown> extends HttpClient<SecurityDataType>{
  4. /**
  5. * No description
  6. *
  7. * @tags
  8. * @name
  9. * @summary 分页查询
  10. * @request GET:
  11. * @secure
  12. */
  13. getPageData = (data: oilSdkAuthorPostPageDto, params: RequestParams = {}) =>
  14. this.request<oilSdkAuthorDtoResult, any>({
  15. path:'/api/app/fueiling-sdk-auth/get-page',
  16. method: 'POST',
  17. body: data,
  18. secure: true,
  19. type: ContentType.Json,
  20. format: 'json',
  21. ...params,
  22. })
  23. }