/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

  1. package com.emis.caesar.senao.unit;
  2. import com.emis.caesar.senao.db.TGetDbData;
  3. import com.emis.caesar.senao.db.TWriteDataToDb;
  4. import com.emis.caesar.senao.notiy.TButtonEventNotify;
  5. import com.emis.caesar.senao.notiy.TGeneralEventNotify;
  6. import com.emis.caesar.senao.notiy.TUserInterfaceNotify;
  7. import com.emis.caesar.senao.util.TElectInvoiceUtil;
  8. public class TCcrConsole {
  9. // notify
  10. public TUserInterfaceNotify UInotify = new TUserInterfaceNotify(null);
  11. public TButtonEventNotify BTNnotify = new TButtonEventNotify(null);
  12. public TGeneralEventNotify GENnotify = new TGeneralEventNotify(null);
  13. // 資料庫
  14. public TGetDbData getDbData= new TGetDbData(null);
  15. public TWriteDataToDb wrDataToDb = new TWriteDataToDb(null);
  16. public TElectInvoiceUtil ElectInvoiceUtil = new TElectInvoiceUtil(null);
  17. /**
  18. * 开发模式,暂时先用一些假数据绕过去,自己要進行測試,請改成true,但別提交
  19. */
  20. public static final boolean bDevelopMode = false;
  21. /**
  22. * Socket 串接只能呼叫一次
  23. * 其餘給等釋放後才能呼叫
  24. */
  25. public static boolean bSocketFalg = true;
  26. //
  27. public TCcrConsole() {
  28. }
  29. }