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.
20 lines
569 B
20 lines
569 B
4 years ago
|
define(function (require, exports, module) {
|
||
|
var Service = require('apps/rht/base/rhtService');
|
||
|
var prefix = 'cn.qdhezheng.rht.app.bas.sys010104.';
|
||
|
var prefixpubsysBaseBL = 'cn.qdhezheng.rht.app.comm.plugins.sys.';
|
||
|
|
||
|
return {
|
||
|
getMaxAcctData:function(){
|
||
|
return Service.doPlugin(prefix + 'GetMaxAcctData',{
|
||
|
})
|
||
|
},
|
||
|
genAcctData:function(year, bgnDate){
|
||
|
return Service.doPlugin(prefix + 'GenAcctData',{
|
||
|
year: year,
|
||
|
bgndate: bgnDate
|
||
|
})
|
||
|
}
|
||
|
};
|
||
|
|
||
|
})
|