/webccr/src/com/emis/caesar/senao/unit/TCcrConsole.java
https://bitbucket.org/sanliou/synccr · Java · 37 lines · 19 code · 8 blank · 10 comment · 0 complexity · 0c8d4ea1017d1e264cb382b1ec9325da MD5 · raw file
- package com.emis.caesar.senao.unit;
- import com.emis.caesar.senao.db.TGetDbData;
- import com.emis.caesar.senao.db.TWriteDataToDb;
- import com.emis.caesar.senao.notiy.TButtonEventNotify;
- import com.emis.caesar.senao.notiy.TGeneralEventNotify;
- import com.emis.caesar.senao.notiy.TUserInterfaceNotify;
- import com.emis.caesar.senao.util.TElectInvoiceUtil;
- public class TCcrConsole {
- // notify
- public TUserInterfaceNotify UInotify = new TUserInterfaceNotify(null);
- public TButtonEventNotify BTNnotify = new TButtonEventNotify(null);
- public TGeneralEventNotify GENnotify = new TGeneralEventNotify(null);
- // 資料庫
- public TGetDbData getDbData= new TGetDbData(null);
- public TWriteDataToDb wrDataToDb = new TWriteDataToDb(null);
- public TElectInvoiceUtil ElectInvoiceUtil = new TElectInvoiceUtil(null);
-
-
- /**
- * 开发模式,暂时先用一些假数据绕过去,自己要進行測試,請改成true,但別提交
- */
- public static final boolean bDevelopMode = false;
- /**
- * Socket 串接只能呼叫一次
- * 其餘給等釋放後才能呼叫
- */
- public static boolean bSocketFalg = true;
- //
- public TCcrConsole() {
- }
- }