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 = { export type CompanyDto = {
id?: number; id?: number;
caption?: string | null; caption?: string | null;
companyType?: string | null; companyTypeCaption?: string | null;
} }

View File

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

View File

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

View File

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