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

142 lines
2.7 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 { StatusEnum } from './status-enum';
/**
*
*
* @export
* @interface UpdatePluginInput
*/
export interface UpdatePluginInput {
/**
* Id
*
* @type {number}
* @memberof UpdatePluginInput
*/
id?: number;
/**
*
*
* @type {Date}
* @memberof UpdatePluginInput
*/
createTime?: Date;
/**
*
*
* @type {Date}
* @memberof UpdatePluginInput
*/
updateTime?: Date | null;
/**
* Id
*
* @type {number}
* @memberof UpdatePluginInput
*/
createUserId?: number | null;
/**
*
*
* @type {string}
* @memberof UpdatePluginInput
*/
createUserName?: string | null;
/**
* Id
*
* @type {number}
* @memberof UpdatePluginInput
*/
updateUserId?: number | null;
/**
*
*
* @type {string}
* @memberof UpdatePluginInput
*/
updateUserName?: string | null;
/**
*
*
* @type {boolean}
* @memberof UpdatePluginInput
*/
isDelete?: boolean;
2024-06-15 13:02:35 +08:00
/**
* Id
*
* @type {number}
* @memberof UpdatePluginInput
*/
tenantId?: number | null;
/**
* C#
*
* @type {string}
* @memberof UpdatePluginInput
*/
csharpCode: string;
/**
*
*
* @type {string}
* @memberof UpdatePluginInput
*/
assemblyName?: string | null;
/**
*
*
* @type {number}
* @memberof UpdatePluginInput
*/
orderNo?: number;
/**
* @type {StatusEnum}
* @memberof UpdatePluginInput
*/
status?: StatusEnum;
/**
*
*
* @type {string}
* @memberof UpdatePluginInput
*/
remark?: string | null;
/**
*
*
* @type {string}
* @memberof UpdatePluginInput
*/
name: string;
}