-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsql_define.py
More file actions
114 lines (97 loc) · 2.43 KB
/
Copy pathsql_define.py
File metadata and controls
114 lines (97 loc) · 2.43 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
################################################
# DATABASE TABLE AND FIELD NAME
# ATTRIBUTE_TABLE
ATTRIBUTE_TABLE = "attributeTbl"
ATTRIBUTE_ID = "attributeId"
ATTRIBUTE_NAME = "attributeName"
ATTRIBUTE_EXPLAIN = "attributeExplain"
# CHARACTER_TABLE
CHARACTER_TABLE = "characterTbl"
CHARACTER_ID = "characterId"
CHARACTER_NAME = "characterName"
# ITEM_TABLE
ITEM_TABLE = "itemTbl"
ITEM_NAME = "itemName"
SLOT_CODE = "slotCode"
SLOT_NAME = "slotName"
RARITY_CODE = "rarityCode"
RARITY_NAME = "rarityName"
EQUIP_SLOT_CODE = "equipSlotCode"
EQUIP_SLOT_NAME = "equipSlotName"
SEASON_CODE = "seasonCode"
SEASON_NAME = "seasonName"
ITEM_EXPLAIN = "explain"
ITEM_EXPLAIN_DETAIL = "explainDetail"
# MATCH_TABLE
MATCH_TABLE = "matchTbl"
DATE = "date"
MATCH_ID = "matchId"
MAP_ID = "mapId"
MAP_NAME = "mapName"
ITEM_ID = "itemId"
GAME_TYPE_ID = "gameTypeId"
# MATCH_DETAIL_TABLE
MATCH_DETAIL_TABLE = "match_detailTbl"
RESULT = "result"
RANDOM = "random"
PARTY_USER_COUNT = "partyUserCount"
LEVEL = "level"
KILL_COUNT = "killCount"
DEATH_COUNT = "deathCount"
ASSIST_COUNT = "assistCount"
ATTACK_POINT = "attackPoint"
DAMAGE_POINT = "damagePoint"
BATTLE_POINT = "battlePoint"
SIGHT_POINT = "sightPoint"
PLAY_TIME = "playTime"
ATTRIBUTE_ID_LV1 = "attributeId_lv1"
ATTRIBUTE_ID_LV2 = "attributeId_lv2"
ATTRIBUTE_ID_LV3 = "attributeId_lv3"
ITEM_101 = "item_101"
ITEM_102 = "item_102"
ITEM_103 = "item_103"
ITEM_104 = "item_104"
ITEM_105 = "item_105"
ITEM_106 = "item_106"
ITEM_107 = "item_107"
ITEM_202 = "item_202"
ITEM_203 = "item_203"
ITEM_204 = "item_204"
ITEM_205 = "item_205"
ITEM_301 = "item_301"
ITEM_302 = "item_302"
ITEM_303 = "item_303"
ITEM_304 = "item_304"
ITEM_305 = "item_305"
# POSITION_TABLE
POSITION_TABLE = "positionTbl"
POSITION_NAME = "positionName"
POSITION_EXPLAIN = "explain"
# SEARCH_DATE_TABLE
SEARCH_DATE_TABLE = "search_dateTbl"
PAST_DATE = "past_date"
RECENT_DATE = "recent_date"
# USER_TABLE
USER_TABLE = "userTbl"
PLAYER_ID = "playerId"
NICKNAME = "nickname"
GRADE = "grade"
CLAN_NAME = "clanName"
RATING_POINT = "ratingPoint"
MAX_RATING_POINT = "maxRatingPoint"
TIER_NAME = "tierName"
RATING_WIN = "ratingWin"
RATING_LOSE = "ratingLose"
RATING_STOP = "ratingStop"
NORMAL_WIN = "normalWin"
NORMAL_LOSE = "normalLose"
NORMAL_STOP = "normalStop"
################################################
# ETC
WIN_COUNT = "winCount"
LOSE_COUNT = "loseCount"
STOP_COUNT = "stopCount"
POSITION = "position"
ATTRIBUTE = "attribute"
ITEMS = "items"
PLAYERS = "players"