12345678910111213141516171819202122 |
- # -*- coding:utf-8 -*-
- import os, sys, time
- class xlsConst():
- G_LEVEL = ['First', 'Second', 'Third', 'Fourth', 'Fifth', 'Sixth', 'Seventh', 'Eighth', 'Ninth', 'Tenth',
- 'Eleventh', 'Twelfth']
- parent = u'parent'
- shortcut_key = u'shortcut_key'
- toparent_key = u'toparent_key'
- layout = u'layout'
- option = u'option'
- option_for_ocr = u'option_for_ocr'
- move_key = u'move_key'
- enter_key = u'enter_key'
- others = u'others'
- value_name = u'value_name'
- value = u'value'
- value_for_ocr = u'value_for_ocr'
- FLevel_Params=[parent, shortcut_key, toparent_key, layout, option, option_for_ocr, move_key, enter_key, others]
- NLevel_Params=[parent, toparent_key, layout, option, option_for_ocr, move_key, enter_key, others]
- VLevel_Params=[value_name, value, value_for_ocr, move_key, enter_key, others]
- DLevel_Params = NLevel_Params
|