xlsConst.py 898 B

1234567891011121314151617181920212223
  1. # -*- coding:utf-8 -*-
  2. import os, sys, time
  3. class xlsConst():
  4. G_LEVEL = ['First', 'Second', 'Third', 'Fourth', 'Fifth', 'Sixth', 'Seventh', 'Eighth', 'Ninth', 'Tenth',
  5. 'Eleventh', 'Twelfth']
  6. parent = u'parent'
  7. shortcut_key = u'shortcut_key'
  8. toparent_key = u'toparent_key'
  9. layout = u'layout'
  10. option = u'option'
  11. option_for_ocr = u'option_for_ocr'
  12. move_key = u'move_key'
  13. enter_key = u'enter_key'
  14. others = u'others'
  15. value_name = u'value_name'
  16. value = u'value'
  17. value_for_ocr = u'value_for_ocr'
  18. FLevel_Params = [parent, shortcut_key, toparent_key, layout, option, option_for_ocr, move_key, enter_key, others]
  19. NLevel_Params = [parent, toparent_key, layout, option, option_for_ocr, move_key, enter_key, others]
  20. VLevel_Params = [value_name, value, value_for_ocr, move_key, enter_key, others]
  21. DLevel_Params = NLevel_Params