import { INextAction } from "../ui-service"; export interface IViewLogicInput { /** * 名称 */ name: string; /** * 界面行为标识 */ actionTag: string; /** * 数据能力部件 */ xDataCtrlName: string; /** * 界面行为映射应用实体代码名称 */ actionDECodeName: string; /** * 预置行为类型 */ predefinedType: string; /** * 后续界面行为 * * @type {INextAction} * @memberof IViewLogicInput */ nextAction?: INextAction; }