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.
32 lines
990 B
32 lines
990 B
4 years ago
|
define(function (require, exports, module) {
|
||
|
let Service = require('apps/rht/base/rhtService');
|
||
|
let prefix = 'cn.qdhezheng.rht.app.sku.sku080207.';
|
||
|
let prefixpubsysBaseBL = 'cn.qdhezheng.rht.app.comm.plugins.sku.';
|
||
|
|
||
|
return {
|
||
|
GetAlterMode:function(classId){
|
||
|
return Service.doPlugin(prefixpubsysBaseBL + 'GetAlterMode',{
|
||
|
classid:classId
|
||
|
})
|
||
|
},
|
||
|
GetEtpInfo:function(etpCode){
|
||
|
return Service.doPlugin(prefix + 'GetEtpInfo',{
|
||
|
etpcode:etpCode
|
||
|
})
|
||
|
},
|
||
|
IsExistsEtpName:function(etpName){
|
||
|
return Service.doPlugin(prefix + 'IsExistsEtpName',{
|
||
|
etpname:etpName
|
||
|
})
|
||
|
},
|
||
|
GetNextEtpCode:function(orgCode, tableId, propId){
|
||
|
return Service.doPlugin(prefix + 'GetNextEtpCode',{
|
||
|
orgcode:orgCode,
|
||
|
tableid:tableId,
|
||
|
propid:propId
|
||
|
})
|
||
|
}
|
||
|
};
|
||
|
|
||
|
})
|