forked from ddrilling/asb_cloud_front
update api client
This commit is contained in:
parent
615e0d4031
commit
bd6b8cef11
@ -5,5 +5,5 @@
|
||||
export type CompanyDto = {
|
||||
id?: number;
|
||||
caption?: string | null;
|
||||
companyType?: string | null;
|
||||
companyTypeCaption?: string | null;
|
||||
}
|
@ -13,5 +13,4 @@ export type FileInfoDto = {
|
||||
uploadDate?: string;
|
||||
size?: number;
|
||||
author?: UserDto;
|
||||
company?: string | null;
|
||||
}
|
@ -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;
|
||||
}
|
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user