UNIVPLMDataIntegration/Web/src/api-services/models/base-proc-input.ts

48 lines
1.3 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 BaseProcInput
*/
export interface BaseProcInput {
/**
* ProcId
*
* @type {string}
* @memberof BaseProcInput
*/
procId?: string | null;
/**
* Id
*
* @type {string}
* @memberof BaseProcInput
*/
configId?: string | null;
/**
*
*
* @type {{ [key: string]: any; }}
* @memberof BaseProcInput
* @example {"id":"351060822794565"}
*/
procParams?: { [key: string]: any; } | null;
}