| 123456789101112131415161718192021222324252627282930 |
- /**
- * 这是一个各业务公共api总入口
- * 业务开发时,将复制这个文件,把"-demo"后缀去掉。
- * 当新增子系统时可以模仿Subsys新增相应的代码,如:
- * 增加保险关系子系统公共api,另起一行增加代码:
- * ,oBxgxComm : new _CBxgxComm()
- */
- var _CYW = _FW.fCreateClass();
- _CYW.prototype = {
-
- fCreateClass : function() {
- return function() {
- this.fInitialize.apply(this, arguments);
- };
- },
- fInitialize:function(options) {},
-
- /*******************自定义区*****************************************/
- oSubsysComm : new _CSubsysComm()
- /*
- ,oBxgxComm : new _CBxgxComm()
- ,oSxdyComm : new _CSxdyComm()
- ,oYbdyComm : new _CYbdyComm()
- */
-
- /**********************************************************/
- };
- var CYW = new _CYW();
|