/** * AutoCodeEui 生成的界面 * http://svn.jiulingwan.com/CQLL/cqll-devel/client/tags/tools/AutoCodeEUI * euiPath:${path} * made by ${auth} * create on ${time} */ class ${shortName}Model { private static _instance: ${shortName}Model; public static get ins(): ${shortName}Model { let self = this; if (self._instance == undefined) { self._instance = new ${shortName}Model(); } return self._instance; } public constructor() { super(); netRsp.on(this); } //监听服务器事件使用 private n_协议号(vo:S_XXXX):void{} }