UNIVPLMDataIntegration/Web/src/api-services/models/update-code-gen-input.ts

261 lines
4.8 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
* @interface UpdateCodeGenInput
*/
export interface UpdateCodeGenInput {
/**
* @type {Search}
* @memberof UpdateCodeGenInput
*/
search?: Search;
/**
*
*
* @type {string}
* @memberof UpdateCodeGenInput
*/
keyword?: string | null;
/**
* @type {Filter}
* @memberof UpdateCodeGenInput
*/
filter?: Filter;
2024-06-15 13:02:35 +08:00
/**
*
*
* @type {number}
* @memberof UpdateCodeGenInput
*/
page?: number;
/**
*
*
* @type {number}
* @memberof UpdateCodeGenInput
*/
pageSize?: number;
/**
*
*
* @type {string}
* @memberof UpdateCodeGenInput
*/
field?: string | null;
/**
*
*
* @type {string}
* @memberof UpdateCodeGenInput
*/
order?: string | null;
/**
*
*
* @type {string}
* @memberof UpdateCodeGenInput
*/
descStr?: string | null;
/**
*
*
* @type {string}
* @memberof UpdateCodeGenInput
*/
className?: string | null;
/**
*
*
* @type {string}
* @memberof UpdateCodeGenInput
*/
tablePrefix?: string | null;
/**
*
*
* @type {string}
* @memberof UpdateCodeGenInput
*/
configId?: string | null;
/**
* ()
*
* @type {string}
* @memberof UpdateCodeGenInput
*/
dbName?: string | null;
/**
*
*
* @type {string}
* @memberof UpdateCodeGenInput
*/
dbType?: string | null;
/**
*
*
* @type {string}
* @memberof UpdateCodeGenInput
*/
connectionString?: string | null;
/**
*
2024-06-15 13:02:35 +08:00
*
* @type {string}
* @memberof UpdateCodeGenInput
*/
tableComment?: string | null;
2024-06-15 13:02:35 +08:00
/**
*
2024-06-15 13:02:35 +08:00
*
* @type {string}
* @memberof UpdateCodeGenInput
*/
menuApplication?: string | null;
2024-06-15 13:02:35 +08:00
/**
*
2024-06-15 13:02:35 +08:00
*
* @type {number}
2024-06-15 13:02:35 +08:00
* @memberof UpdateCodeGenInput
*/
menuPid?: number | null;
2024-06-15 13:02:35 +08:00
/**
*
*
* @type {string}
* @memberof UpdateCodeGenInput
*/
menuIcon?: string | null;
2024-06-15 13:02:35 +08:00
/**
*
2024-06-15 13:02:35 +08:00
*
* @type {string}
* @memberof UpdateCodeGenInput
*/
pagePath?: string | null;
2024-06-15 13:02:35 +08:00
/**
*
2024-06-15 13:02:35 +08:00
*
* @type {string}
* @memberof UpdateCodeGenInput
*/
printType?: string | null;
2024-06-15 13:02:35 +08:00
/**
*
2024-06-15 13:02:35 +08:00
*
* @type {string}
* @memberof UpdateCodeGenInput
*/
printName?: string | null;
2024-06-15 13:02:35 +08:00
/**
*
2024-06-15 13:02:35 +08:00
*
* @type {string}
2024-06-15 13:02:35 +08:00
* @memberof UpdateCodeGenInput
*/
tableName: string;
2024-06-15 13:02:35 +08:00
/**
*
2024-06-15 13:02:35 +08:00
*
* @type {string}
2024-06-15 13:02:35 +08:00
* @memberof UpdateCodeGenInput
*/
busName: string;
2024-06-15 13:02:35 +08:00
/**
*
2024-06-15 13:02:35 +08:00
*
* @type {string}
* @memberof UpdateCodeGenInput
*/
nameSpace: string;
2024-06-15 13:02:35 +08:00
/**
*
2024-06-15 13:02:35 +08:00
*
* @type {string}
* @memberof UpdateCodeGenInput
*/
authorName: string;
2024-06-15 13:02:35 +08:00
/**
*
2024-06-15 13:02:35 +08:00
*
* @type {string}
* @memberof UpdateCodeGenInput
*/
generateType: string;
/**
*
*
* @type {boolean}
* @memberof UpdateCodeGenInput
*/
generateMenu: boolean;
2024-06-15 13:02:35 +08:00
2024-07-12 01:17:06 +08:00
/**
* 使 Api Service
*
* @type {boolean}
* @memberof UpdateCodeGenInput
*/
isApiService?: boolean;
2024-06-15 13:02:35 +08:00
/**
* Id
*
* @type {number}
* @memberof UpdateCodeGenInput
*/
id: number;
2024-08-29 19:21:10 +08:00
/**
*
*
* @type {any[]}
* @memberof UpdateCodeGenInput
*/
codeGenTemplateRelations:any[];
2024-06-15 13:02:35 +08:00
}