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

215 lines
4.0 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.
*/
/**
*
*
* @export
* @interface UpdateCodeGenInput
*/
export interface UpdateCodeGenInput {
/**
*
*
* @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
*/
authorName?: 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;
/**
*
*
* @type {string}
* @memberof UpdateCodeGenInput
*/
generateType?: string | null;
/**
*
*
* @type {string}
* @memberof UpdateCodeGenInput
*/
tableName?: string | null;
/**
*
*
* @type {string}
* @memberof UpdateCodeGenInput
*/
nameSpace?: string | null;
/**
*
*
* @type {string}
* @memberof UpdateCodeGenInput
*/
busName?: string | null;
/**
*
*
* @type {string}
* @memberof UpdateCodeGenInput
*/
tableComment?: string | null;
/**
*
*
* @type {string}
* @memberof UpdateCodeGenInput
*/
menuApplication?: string | null;
/**
*
*
* @type {boolean}
* @memberof UpdateCodeGenInput
*/
generateMenu?: boolean;
/**
*
*
* @type {number}
* @memberof UpdateCodeGenInput
*/
menuPid?: number | null;
/**
*
*
* @type {string}
* @memberof UpdateCodeGenInput
*/
pagePath?: string | null;
/**
*
*
* @type {string}
* @memberof UpdateCodeGenInput
*/
printType?: string | null;
/**
*
*
* @type {string}
* @memberof UpdateCodeGenInput
*/
printName?: string | null;
/**
* Id
*
* @type {number}
* @memberof UpdateCodeGenInput
*/
id: number;
}