/**
* @描述:公共类:用户安全退出
* @创建人:cloud
*/
function run() {
try {
_webParams.getSessionItem().remove('PRINCIPAL_CUSTOMER_OBJECT');
return _webTools.getJsonMessage(true, null, null, null, "安全退出成功");
} catch (e) {
return _webTools.getJsonMessage(false, null, null, e.toString(), "退出失败!系统异常!");
}
}
run();