UNIVPLMDataIntegration/Web/src/api-services/models/sys-ldap-input.ts

93 lines
1.9 KiB
TypeScript
Raw Normal View History

2024-06-15 13:02:35 +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 { Filter } from './filter';
import { Search } from './search';
2024-06-15 13:02:35 +08:00
/**
*
*
* @export
2024-11-25 16:27:14 +08:00
* @interface SysLdapInput
2024-06-15 13:02:35 +08:00
*/
2024-11-25 16:27:14 +08:00
export interface SysLdapInput {
2024-06-15 13:02:35 +08:00
/**
* @type {Search}
2024-11-25 16:27:14 +08:00
* @memberof SysLdapInput
*/
search?: Search;
/**
*
*
* @type {string}
2024-11-25 16:27:14 +08:00
* @memberof SysLdapInput
*/
keyword?: string | null;
/**
* @type {Filter}
2024-11-25 16:27:14 +08:00
* @memberof SysLdapInput
*/
filter?: Filter;
2024-06-15 13:02:35 +08:00
/**
*
*
* @type {number}
2024-11-25 16:27:14 +08:00
* @memberof SysLdapInput
2024-06-15 13:02:35 +08:00
*/
page?: number;
/**
*
*
* @type {number}
2024-11-25 16:27:14 +08:00
* @memberof SysLdapInput
2024-06-15 13:02:35 +08:00
*/
pageSize?: number;
/**
*
*
* @type {string}
2024-11-25 16:27:14 +08:00
* @memberof SysLdapInput
2024-06-15 13:02:35 +08:00
*/
field?: string | null;
/**
*
*
* @type {string}
2024-11-25 16:27:14 +08:00
* @memberof SysLdapInput
2024-06-15 13:02:35 +08:00
*/
order?: string | null;
/**
*
*
* @type {string}
2024-11-25 16:27:14 +08:00
* @memberof SysLdapInput
2024-06-15 13:02:35 +08:00
*/
descStr?: string | null;
/**
2024-11-25 16:27:14 +08:00
*
2024-06-15 13:02:35 +08:00
*
* @type {string}
2024-11-25 16:27:14 +08:00
* @memberof SysLdapInput
2024-06-15 13:02:35 +08:00
*/
host?: string | null;
}