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.
18 lines
465 B
18 lines
465 B
define(function (require, exports, module) {
|
|
let Service = require('apps/rht/base/rhtService');
|
|
let prefix = 'cn.qdhezheng.rht.app.sys.sys01030803.';
|
|
|
|
return {
|
|
ControlCodeRule:function(tableName){
|
|
return Service.doPlugin(prefix + 'ControlCodeRule',{
|
|
tablename:tableName
|
|
})
|
|
},
|
|
GetDBID:function(){
|
|
return Service.doPlugin(prefix + 'GetDBID',{
|
|
})
|
|
}
|
|
};
|
|
|
|
})
|