update api client

This commit is contained in:
Фролов 2021-08-31 18:06:48 +05:00
parent 615e0d4031
commit bd6b8cef11
4 changed files with 7 additions and 5 deletions

View File

@ -5,5 +5,5 @@
export type CompanyDto = {
id?: number;
caption?: string | null;
companyType?: string | null;
companyTypeCaption?: string | null;
}

View File

@ -13,5 +13,4 @@ export type FileInfoDto = {
uploadDate?: string;
size?: number;
author?: UserDto;
company?: string | null;
}

View File

@ -2,6 +2,8 @@
/* tslint:disable */
/* eslint-disable */
import type { CompanyDto } from './CompanyDto';
export type UserDto = {
login?: string | null;
level?: number | null;
@ -12,4 +14,5 @@ export type UserDto = {
idCompany?: number | null;
idRole?: number | null;
password?: string | null;
company?: CompanyDto;
}

View File

@ -35,7 +35,7 @@ requestBody?: any,
* Возвращает информацию о файлах для скважины в выбраной категории
* @param idWell id скважины
* @param idCategory id категории файла
* @param companies id компаний для фильтрации возвращаемых файлов
* @param companyName id компаний для фильтрации возвращаемых файлов
* @param fileName часть имени файла для поиска
* @param begin дата начала
* @param end дата окончания
@ -47,7 +47,7 @@ requestBody?: any,
public static async getFilesInfo(
idWell: number,
idCategory: number,
companies?: Array<number>,
companyName?: string,
fileName?: string,
begin?: string,
end?: string,
@ -59,7 +59,7 @@ take: number = 32,
path: `/api/well/${idWell}/files`,
query: {
'idCategory': idCategory,
'companies': companies,
'companyName': companyName,
'fileName': fileName,
'begin': begin,
'end': end,