import { IPSModelObject } from '../ipsmodel-object'; /** * * @export * @interface IPSEAIDataTypeItem */ export interface IPSEAIDataTypeItem extends IPSModelObject { /** * 数据 * @type {string} */ data: string; /** * 项标记 * @type {string} */ itemTag: string; /** * 项标记2 * @type {string} */ itemTag2: string; /** * 值 * @type {string} */ value: string; }