fbc_starter/cache/
cache_key_table.rs1pub const CAPTCHA: &str = "captcha";
10
11pub const TOKEN: &str = "token";
14
15pub const TOTAL_LOGIN_PV: &str = "total_login_pv";
21
22pub const TODAY_LOGIN_PV: &str = "today_login_pv";
25
26pub const TODAY_LOGIN_IV: &str = "today_login_iv";
29
30pub const TOTAL_LOGIN_IV: &str = "total_login_iv";
33
34pub const TODAY_PV: &str = "today_pv";
37
38pub const TOTAL_PV: &str = "total_pv";
41
42pub const LOGIN_LOG_TEN_DAY: &str = "login_log_tenday";
45
46pub const LOGIN_LOG_BROWSER: &str = "login_log_browser";
49
50pub const LOGIN_LOG_SYSTEM: &str = "login_log_system";
53
54pub const PARAMETER_KEY: &str = "parameter_key";
57
58pub const ONLINE: &str = "online";
61
62pub const TOKEN_USER_ID: &str = "token_user_id";
65
66pub const REGISTER_USER: &str = "register";
69
70pub mod friend {
74 pub const RELATION: &str = "friend_relation";
76
77 pub const REVERSE_FRIENDS: &str = "reverse_friends";
79
80 pub const USER_FRIENDS: &str = "user_friends";
82
83 pub const RELATION_STATUS: &str = "relation_status";
85}
86
87pub mod presence {
89 pub const GLOBAL_USERS_ONLINE: &str = "global_users_online";
91
92 pub const GLOBAL_DEVICES_ONLINE: &str = "global_devices_online";
94
95 pub const USERS_GROUP: &str = "users_group";
97
98 pub const USERS_GROUP_ONLINE: &str = "users_group_online";
100
101 pub const GROUP_MEMBERS: &str = "group_members";
103
104 pub const GROUP_MEMBERS_ONLINE: &str = "group_members_online";
106}
107
108pub mod video_call {
110 pub const META_DATA_ADMIN: &str = "meta_data_admin";
112}
113
114pub mod system {
116 pub const SYS_CONFIG: &str = "sys_config";
118
119 pub const TENANT: &str = "def_tenant";
121
122 pub const APPLICATION: &str = "def_application";
124
125 pub const DICT: &str = "def_dict";
127
128 pub const DEF_PARAMETER: &str = "def_parameter";
130
131 pub const DEF_USER: &str = "def_user";
133
134 pub const DEF_CLIENT: &str = "def_client";
136
137 pub const TENANT_APPLICATION_RESOURCE: &str = "t_a_r";
139
140 pub const TENANT_APPLICATION: &str = "t_a";
142
143 pub const RESOURCE: &str = "dr";
145
146 pub const RESOURCE_API: &str = "dra";
148
149 pub const APPLICATION_RESOURCE: &str = "app_res";
151
152 pub const ALL_RESOURCE_API: &str = "all_dra";
153}
154
155pub mod chat {
157 pub const ROOM_META: &str = "room_meta";
159
160 pub const CLOSE_ROOM: &str = "close_room";
162
163 pub const CHAT_PASSWORD: &str = "chat_password";
165
166 pub const CHAT_GPT: &str = "chat_GPT";
168
169 pub const AUTH: &str = "auth";
171
172 pub const AYSNC: &str = "aysnc";
174
175 pub const CHAT_TOKEN: &str = "chat_token";
177
178 pub const USER_CACHE: &str = "user_cache";
180
181 pub const WX_MSG: &str = "wxMsg";
183
184 pub const USER_STATE: &str = "user_state";
186
187 pub const ANNOUNCEMENTS: &str = "announcements";
189
190 pub const FEED: &str = "feed";
192
193 pub const FEED_MEDIA: &str = "feedMedia";
195
196 pub const FEED_TARGET: &str = "feedTarget";
198
199 pub const FEED_COMMENT: &str = "feedComment";
201
202 pub const FEED_LIKE: &str = "feedLike";
204
205 pub const USER_CONTACT: &str = "user_contact";
207
208 pub const PASSAGE_MSG: &str = "passage_msg";
210
211 pub const GROUP_INFO_FORMAT: &str = "group_info";
213
214 pub const ROOM_GROUP_INFO_FORMAT: &str = "room_group_info";
216
217 pub const ROOM_INFO_FORMAT: &str = "room_info";
219
220 pub const ROOM_FRIEND_FORMAT: &str = "room_friend";
222
223 pub const ROOM_MSG_FORMAT: &str = "room_msg";
225
226 pub const GROUP_ANNOUNCEMENTS_FORMAT: &str = "group_announcements";
228
229 pub const HOT_ROOM_ZET: &str = "hot_room";
231}
232
233pub mod oauth {
235 pub const QR: &str = "qr_status";
237}
238
239pub mod base {
241 pub const BASE_DICT: &str = "base_dict";
243
244 pub const BASE_ORG: &str = "base_org";
246
247 pub const BASE_POSITION: &str = "base_position";
249
250 pub const BASE_EMPLOYEE: &str = "base_employee";
252
253 pub const DEF_USER_TENANT: &str = "def_user_tenant";
255
256 pub const ROLE: &str = "role";
259
260 pub const ROLE_RESOURCE: &str = "role_resource";
263
264 pub const EMPLOYEE_ROLE: &str = "employee_role";
267
268 pub const EMPLOYEE_ORG: &str = "employee_org";
271
272 pub const ORG_ROLE: &str = "org_role";
275}