local itIn = CIntent();
local itOut = CIntent();
itIn:set('flow_status', TN_FAULT_FLOW_REPORT);
itIn:set('fault_id', '102');
itIn:set('fault_part_id', '21');
itIn:set('eqpt_id', '20');
itIn:set('report_user_id', '10');
itIn:set('report_info', m_sCurClassDefName .. '-' .. m_sCurFaultName);
itIn:set('ext_info', m_sExtInfo);
itIn:set('report_fault_id', '102');
local sHappenTime='';
local sResumeTime='';
if #sHappenTime > 0 then
itIn:set('happen_time', sHappenTime);
itIn:set('resume_time', sResumeTime);
end
local iRet = busi:sendEvent(itIn, itOut);
if iRet < 0 then
print('上报失败 ');
end