UNIVPLMDataIntegration/Web/src/api-services/models/admin-result-sql-sugar-paged-list-page-pos-output.ts

70 lines
1.8 KiB
TypeScript
Raw Normal View History

2024-06-30 21:35:50 +08:00
/* tslint:disable */
/* eslint-disable */
/**
* Admin.NET
* .NET <br/><u><b><font color='FF0000'> 👮</font></b></u>
*
* OpenAPI spec version: 1.0.0
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
import { SqlSugarPagedListPagePosOutput } from './sql-sugar-paged-list-page-pos-output';
/**
*
*
* @export
* @interface AdminResultSqlSugarPagedListPagePosOutput
*/
export interface AdminResultSqlSugarPagedListPagePosOutput {
/**
*
*
* @type {number}
* @memberof AdminResultSqlSugarPagedListPagePosOutput
*/
code?: number;
/**
* successwarningerror
*
* @type {string}
* @memberof AdminResultSqlSugarPagedListPagePosOutput
*/
type?: string | null;
/**
*
*
* @type {string}
* @memberof AdminResultSqlSugarPagedListPagePosOutput
*/
message?: string | null;
/**
* @type {SqlSugarPagedListPagePosOutput}
* @memberof AdminResultSqlSugarPagedListPagePosOutput
*/
result?: SqlSugarPagedListPagePosOutput;
/**
*
*
* @type {any}
* @memberof AdminResultSqlSugarPagedListPagePosOutput
*/
extras?: any | null;
/**
*
*
* @type {Date}
* @memberof AdminResultSqlSugarPagedListPagePosOutput
*/
time?: Date;
}