mirror of
https://github.com/BgaSol/sol-cloud
synced 2026-04-21 17:17:16 +00:00
39 lines
751 B
TypeScript
39 lines
751 B
TypeScript
/* generated using openapi-typescript-codegen -- do not edit */
|
|
/* istanbul ignore file */
|
|
/* tslint:disable */
|
|
/* eslint-disable */
|
|
import type { PageVoFileEntity } from './PageVoFileEntity';
|
|
/**
|
|
* 基础响应数据
|
|
*/
|
|
export type BaseVoPageVoFileEntity = {
|
|
/**
|
|
* 响应码
|
|
*/
|
|
code?: number;
|
|
/**
|
|
* 响应消息
|
|
*/
|
|
message?: string;
|
|
data?: PageVoFileEntity;
|
|
/**
|
|
* 响应时间
|
|
*/
|
|
time?: string;
|
|
/**
|
|
* 响应类型
|
|
*/
|
|
type?: BaseVoPageVoFileEntity.type;
|
|
};
|
|
export namespace BaseVoPageVoFileEntity {
|
|
/**
|
|
* 响应类型
|
|
*/
|
|
export enum type {
|
|
SUCCESS = 'SUCCESS',
|
|
WARNING = 'WARNING',
|
|
INFO = 'INFO',
|
|
ERROR = 'ERROR',
|
|
}
|
|
}
|
|
|