UNIVPLMDataIntegration/Web/src/api-services/system/models/join-config.ts

48 lines
1.3 KiB
TypeScript
Raw Normal View History

2025-09-22 00:36:27 +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 { JoinConfigTableColumn } from './join-config-table-column';
2025-09-22 00:36:27 +08:00
/**
*
*
* @export
* @interface JoinConfig
2025-09-22 00:36:27 +08:00
*/
export interface JoinConfig {
2025-09-22 00:36:27 +08:00
/**
* @type {string}
* @memberof JoinConfig
2025-09-22 00:36:27 +08:00
*/
joinType?: string | null;
2025-09-22 00:36:27 +08:00
/**
* @type {string}
* @memberof JoinConfig
2025-09-22 00:36:27 +08:00
*/
leftTable?: string | null;
2025-09-22 00:36:27 +08:00
/**
* @type {string}
* @memberof JoinConfig
2025-09-22 00:36:27 +08:00
*/
rightTable?: string | null;
2025-09-22 00:36:27 +08:00
/**
* @type {Array<JoinConfigTableColumn>}
* @memberof JoinConfig
2025-09-22 00:36:27 +08:00
*/
tableColumns?: Array<JoinConfigTableColumn> | null;
2025-09-22 00:36:27 +08:00
}