You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
636 B

4 years ago
define (function (require,exports,module) {
//引入Server模块Web与Server的通讯
let Service = require('apps/rht/base/rhtService');
let prefix = 'cn.qdhezheng.rht.app.sys.sys010102.';
return {
clearSysLog:function(zbOrgCode,orgCode){
return Service.doPlugin(prefix + 'clearSysLog',{
ZbOrgCode:zbOrgCode,
OrgCode:orgCode
})
}
/*,
autoRefresh:function(accDate){
return Service.doPlugin(prefix + 'autoRefresh',{
accDate:accDate
})
}*/
}
});