local itIn = CIntent();
itIn:set('flow_status', TN_FAULT_FLOW_CLOSE);--事件流程,TN_FAULT_FLOW_CLOSE为关闭
itIn:set('fault_id', '102');--事件id号,系统定义
itIn:set('fault_record_id', '1201');--被处理事件记录的唯一id
itIn:set('close_user_id', '30');--关闭人id
itIn:set('close_info', '关闭附加信息');
local iRet = db:command('plugin.event_server.event', itIn:toString(), itOut);--发送事件命令,也可使用busi:sendEvent(itIn, itOut)
if iRet < 0 then
print('关闭失败 ');
return;
end