UNIVPLMDataIntegration/Web/src/api-services/models/column-ouput.ts

103 lines
2.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 ColumnOuput
*/
export interface ColumnOuput {
/**
*
*
* @type {string}
* @memberof ColumnOuput
*/
columnName?: string | null;
/**
* Property名
*
* @type {string}
* @memberof ColumnOuput
*/
propertyName?: string | null;
/**
*
*
* @type {number}
* @memberof ColumnOuput
*/
columnLength?: number;
/**
*
*
* @type {string}
* @memberof ColumnOuput
*/
dataType?: string | null;
/**
*
*
* @type {boolean}
* @memberof ColumnOuput
*/
isPrimarykey?: boolean;
/**
*
*
* @type {boolean}
* @memberof ColumnOuput
*/
isNullable?: boolean;
/**
* .NET字段类型
*
* @type {string}
* @memberof ColumnOuput
*/
netType?: string | null;
/**
*
*
* @type {string}
* @memberof ColumnOuput
*/
columnComment?: string | null;
/**
*
*
* @type {string}
* @memberof ColumnOuput
*/
columnKey?: string | null;
/**
*
*
* @type {string}
* @memberof ColumnOuput
*/
defaultValue?: string | null;
2024-06-15 13:02:35 +08:00
}