forked from zhangqi-ulua/XlsxToLua
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAppValues.cs
More file actions
80 lines (67 loc) · 5 KB
/
AppValues.cs
File metadata and controls
80 lines (67 loc) · 5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
using System;
using System.Collections.Generic;
using System.Text;
public class AppValues
{
public const string PROGRAM_NAME = "XlsxToLua.exe";
public const string GUI_PROGRAM_NAME = "XlsxToLuaGUI.exe";
public const string EXPORT_INCLUDE_SUBFOLDER_PARAM_STRING = "-exportIncludeSubfolder";
public const string EXPORT_KEEP_DIRECTORY_STRUCTURE_PARAM_STRING = "-exportKeepDirectoryStructure";
public const string NEED_COLUMN_INFO_PARAM_STRING = "-columnInfo";
public const string UNCHECKED_PARAM_STRING = "-unchecked";
public const string NO_CLIENT_PATH_STRING = "-noClient";
public const string NO_LANG_PARAM_STRING = "-noLang";
public const string LANG_NOT_MATCHING_PRINT_PARAM_STRING = "-printEmptyStringWhenLangNotMatching";
public const string EXPORT_MYSQL_PARAM_STRING = "-exportMySQL";
public const string PART_EXPORT_PARAM_STRING = "-part";
public const string EXCEPT_EXPORT_PARAM_STRING = "-except";
public const string ALLOWED_NULL_NUMBER_PARAM_STRING = "-allowedNullNumber";
public const string EXPORT_CSV_PARAM_STRING = "-exportCsv";
public const string EXPORT_CSV_PARAM_PARAM_STRING = "-exportCsvParam";
public const string EXPORT_CS_CLASS_PARAM_STRING = "-exportCsClass";
public const string EXPORT_CS_CLASS_PARAM_PARAM_STRING = "-exportCsClassParam";
public const string EXPORT_JAVA_CLASS_PARAM_STRING = "-exportJavaClass";
public const string EXPORT_JAVA_CLASS_PARAM_PARAM_STRING = "-exportJavaClassParam";
public const string EXPORT_JSON_PARAM_STRING = "-exportJson";
public const string EXPORT_JSON_PARAM_PARAM_STRING = "-exportJsonParam";
public const string AUTO_NAME_CSV_CLASS_PARAM_STRING = "-autoNameCsvClassParam";
public const string EXPORT_CSV_PARAM_SUBTYPE_EXPORT_PATH = "exportPath";
public const string EXPORT_CSV_PARAM_SUBTYPE_EXTENSION = "extension";
public const string EXPORT_CSV_PARAM_SUBTYPE_SPLIT_STRING = "splitString";
public const string EXPORT_CSV_PARAM_SUBTYPE_IS_EXPORT_COLUMN_NAME = "isExportColumnName";
public const string EXPORT_CSV_PARAM_SUBTYPE_IS_EXPORT_COLUMN_DATA_TYPE = "isExportColumnDataType";
public const string EXPORT_CS_CLASS_PARAM_SUBTYPE_EXPORT_PATH = "exportPath";
public const string EXPORT_CS_CLASS_PARAM_SUBTYPE_NAMESPACE = "namespace";
public const string EXPORT_CS_CLASS_PARAM_SUBTYPE_USING = "using";
public const string EXPORT_JAVA_CLASS_PARAM_SUBTYPE_EXPORT_PATH = "exportPath";
public const string EXPORT_JAVA_CLASS_PARAM_SUBTYPE_PACKAGE = "package";
public const string EXPORT_JAVA_CLASS_PARAM_SUBTYPE_IMPORT = "import";
public const string EXPORT_JAVA_CLASS_PARAM_SUBTYPE_IS_USE_DATE = "isUseDate";
public const string EXPORT_JAVA_CLASS_PARAM_SUBTYPE_IS_GENERATE_CONSTRUCTOR_WITHOUT_FIELDS = "isGenerateConstructorWithoutFields";
public const string EXPORT_JAVA_CLASS_PARAM_SUBTYPE_IS_GENERATE_CONSTRUCTOR_WITH_ALL_FIELDS = "isGenerateConstructorWithAllFields";
public const string AUTO_NAME_CSV_CLASS_PARAM_SUBTYPE_CLASS_NAME_PREFIX = "classNamePrefix";
public const string AUTO_NAME_CSV_CLASS_PARAM_SUBTYPE_CLASS_NAME_POSTFIX = "classNamePostfix";
public const string EXPORT_JSON_PARAM_SUBTYPE_EXPORT_PATH = "exportPath";
public const string EXPORT_JSON_PARAM_SUBTYPE_EXTENSION = "extension";
public const string EXPORT_JSON_PARAM_SUBTYPE_IS_FORMAT = "isFormat";
public const string EXPORT_JSON_PARAM_SUBTYPE_IS_EXPORT_JSON_ARRAY_FORMAT = "isExportJsonArrayFormat";
public const string EXPORT_JSON_PARAM_SUBTYPE_IS_MAP_INCLUDE_KEY_COLUMN_VALUE = "isMapIncludeKeyColumnValue";
public const string EXPORT_ALL_TO_EXTRA_FILE_PARAM_STRING = "$all";
public const string SAVE_CONFIG_KEY_PROGRAM_PATH = "programPath";
public const string SAVE_CONFIG_KEY_EXCEL_FOLDER_PATH = "excelFolderPath";
public const string SAVE_CONFIG_KEY_EXPORT_LUA_FOLDER_PATH = "exportLuaFolderPath";
public const string SAVE_CONFIG_KEY_CLIENT_FOLDER_PATH = "clientFolderPath";
public const string SAVE_CONFIG_KEY_LANG_FILE_PATH = "langFilePath";
public const string SAVE_CONFIG_KEY_IS_CHECKED_PART = "isCheckedPart";
public const string SAVE_CONFIG_KEY_IS_CHECKED_EXCEPT = "isCheckedExcept";
public const string SAVE_CONFIG_KEY_IS_CHECKED_EXPORT_CSV = "isCheckedExportCsv";
public const string SAVE_CONFIG_KEY_IS_CHECKED_EXPORT_CS_CLASS = "isCheckedExportCsClass";
public const string SAVE_CONFIG_KEY_IS_CHECKED_EXPORT_JAVA_CLASS = "isCheckedExportJavaClass";
public const string SAVE_CONFIG_KEY_IS_CHECKED_EXPORT_JSON = "isCheckedExportJson";
public const string SAVE_CONFIG_KEY_IS_CHECKED_USE_RELATIVE_PATH = "isCheckedUseRelativePath";
public const string SAVE_CONFIG_PARAM_SUBTYPE_SEPARATOR = "_";
public const string SAVE_CONFIG_KEY_VALUE_SEPARATOR = ":";
public static string PROGRAM_FOLDER_PATH = System.AppDomain.CurrentDomain.SetupInformation.ApplicationBase;
public static string PROGRAM_PATH = System.Windows.Forms.Application.ExecutablePath;
public const string EXCEL_TEMP_FILE_FILE_NAME_START_STRING = "~$";
}