/**
 * 执行 {{logicNode.name}} 节点
 *
 * @protected
 * @memberof {{pascalCase uiLogic.codeName}}UILogicBase
 */
protected async execute_{{logicNode.codeName}}_node() {
{{#if logicNode.dstPSDEUILogicParam}}
    const dstParam: any = this.getParam("{{logicNode.dstPSDEUILogicParam.codeName}}");
    dstParam.resetAll();
    this.bindLastReturnParam(null);
    {{> @macro/logic-node/next-node.hbs}}
{{else}}
    throw new Error(`操作参数缺失！`);
{{/if}}
}