import { IPSModelObject } from '../../ipsmodel-object'; /** * * 子接口类型识别属性[] * @export * @interface IPSDEMethodInput */ export interface IPSDEMethodInput extends IPSModelObject { /** * 输入类型 * @description 值模式 [实体方法输入类型] {NONE:没有输入、 KEYFIELD:主键属性、 KEYFIELDS:主键属性集合、 DTO:DTO对象、 DTOS:DTO对象集合、 FILTER:搜索过滤对象、 UNKNOWN:未知、 USER:用户自定义、 USER2:用户自定义2 } * @type {( string | 'NONE' | 'KEYFIELD' | 'KEYFIELDS' | 'DTO' | 'DTOS' | 'FILTER' | 'UNKNOWN' | 'USER' | 'USER2')} */ type: string | 'NONE' | 'KEYFIELD' | 'KEYFIELDS' | 'DTO' | 'DTOS' | 'FILTER' | 'UNKNOWN' | 'USER' | 'USER2'; }