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.
19 lines
612 B
19 lines
612 B
4 years ago
|
define(function (require, exports, module) {
|
||
|
let Service = require('apps/rht/base/rhtService');
|
||
|
let prefix = 'cn.qdhezheng.rht.app.cnt.cnt070106.';
|
||
|
let prefixpubutil = 'cn.qdhezheng.rht.app.comm.pub.util.';
|
||
|
let prefixpubsysBaseBL = 'cn.qdhezheng.rht.app.comm.plugins.cnt.';
|
||
|
let preSkuBL = 'cn.qdhezheng.rht.app.comm.plugins.sku.';
|
||
|
|
||
|
return {
|
||
|
AddLxKcCtl:function(orgCode, pluId, operType){
|
||
|
return Service.doPlugin(prefix + 'AddLxKcCtl',{
|
||
|
orgcode:orgCode,
|
||
|
pluid:pluId,
|
||
|
opertype:operType
|
||
|
})
|
||
|
}
|
||
|
};
|
||
|
|
||
|
})
|