feat: 添加示例JSON数据并更新用户信息和活动卡片组件
- 添加了`example.json`文件,包含旅行博客的示例数据 - 更新了`users.json`文件,扩展了用户信息字段 - 修改了`ActivityCard.vue`组件,将外层`router-link`替换为`div`以优化结构
Showing
6 changed files
with
5289 additions
and
16 deletions
| 1 | <!-- | 1 | <!-- |
| 2 | * @Date: 2025-04-17 13:16:20 | 2 | * @Date: 2025-04-17 13:16:20 |
| 3 | * @LastEditors: hookehuyr hookehuyr@gmail.com | 3 | * @LastEditors: hookehuyr hookehuyr@gmail.com |
| 4 | - * @LastEditTime: 2025-04-21 10:52:50 | 4 | + * @LastEditTime: 2025-04-21 13:18:07 |
| 5 | * @FilePath: /mlaj-reading-club/src/components/shared/ActivityCard.vue | 5 | * @FilePath: /mlaj-reading-club/src/components/shared/ActivityCard.vue |
| 6 | * @Description: 文件描述 | 6 | * @Description: 文件描述 |
| 7 | --> | 7 | --> |
| 8 | <template> | 8 | <template> |
| 9 | - <router-link :to="`/activity/${activity.id}`" | 9 | + <div |
| 10 | class="block bg-white rounded-lg shadow-md overflow-hidden hover:shadow-lg transition duration-200" | 10 | class="block bg-white rounded-lg shadow-md overflow-hidden hover:shadow-lg transition duration-200" |
| 11 | :class="isSmall ? 'flex-row h-32' : 'flex-col'"> | 11 | :class="isSmall ? 'flex-row h-32' : 'flex-col'"> |
| 12 | <div :class="['relative', isSmall ? 'w-1/3' : 'w-full h-48']"> | 12 | <div :class="['relative', isSmall ? 'w-1/3' : 'w-full h-48']"> |
| ... | @@ -56,12 +56,12 @@ | ... | @@ -56,12 +56,12 @@ |
| 56 | </div> | 56 | </div> |
| 57 | </div> | 57 | </div> |
| 58 | 58 | ||
| 59 | - <router-link to="`/activity/${activity.id}`" | 59 | + <router-link :to="`/activity/${activity.id}`" |
| 60 | class="mt-4 inline-flex items-center justify-center px-4 py-2 border border-transparent rounded-md shadow-sm text-sm font-medium text-white bg-gradient-to-r from-green-500 to-blue-500 hover:from-green-600 hover:to-blue-600"> | 60 | class="mt-4 inline-flex items-center justify-center px-4 py-2 border border-transparent rounded-md shadow-sm text-sm font-medium text-white bg-gradient-to-r from-green-500 to-blue-500 hover:from-green-600 hover:to-blue-600"> |
| 61 | {{ isPast ? '查看详情' : isRegistrationOpen ? '立即报名' : '了解更多' }} | 61 | {{ isPast ? '查看详情' : isRegistrationOpen ? '立即报名' : '了解更多' }} |
| 62 | </router-link> | 62 | </router-link> |
| 63 | </div> | 63 | </div> |
| 64 | - </router-link> | 64 | + </div> |
| 65 | </template> | 65 | </template> |
| 66 | 66 | ||
| 67 | <script setup> | 67 | <script setup> | ... | ... |
src/data/checkins.json
0 → 100644
| 1 | +[ | ||
| 2 | + { | ||
| 3 | + "id": "C0001", | ||
| 4 | + "activity_id": "A0001", | ||
| 5 | + "user_id": "U0010", | ||
| 6 | + "registration_id": "R0001", | ||
| 7 | + "checkin_time": "2025-04-02 06:15:17", | ||
| 8 | + "checkin_type": "QR code", | ||
| 9 | + "location": null, | ||
| 10 | + "staff_id": null, | ||
| 11 | + "status": "successful", | ||
| 12 | + "notes": "", | ||
| 13 | + "is_late": false | ||
| 14 | + }, | ||
| 15 | + { | ||
| 16 | + "id": "C0002", | ||
| 17 | + "activity_id": "A0001", | ||
| 18 | + "user_id": "U0020", | ||
| 19 | + "registration_id": "R0002", | ||
| 20 | + "checkin_time": "2025-04-02 05:59:08", | ||
| 21 | + "checkin_type": "QR code", | ||
| 22 | + "location": null, | ||
| 23 | + "staff_id": null, | ||
| 24 | + "status": "successful", | ||
| 25 | + "notes": "", | ||
| 26 | + "is_late": false | ||
| 27 | + }, | ||
| 28 | + { | ||
| 29 | + "id": "C0003", | ||
| 30 | + "activity_id": "A0001", | ||
| 31 | + "user_id": "U0032", | ||
| 32 | + "registration_id": "R0004", | ||
| 33 | + "checkin_time": "2025-04-02 06:22:39", | ||
| 34 | + "checkin_type": "QR code", | ||
| 35 | + "location": null, | ||
| 36 | + "staff_id": null, | ||
| 37 | + "status": "successful", | ||
| 38 | + "notes": "", | ||
| 39 | + "is_late": true | ||
| 40 | + }, | ||
| 41 | + { | ||
| 42 | + "id": "C0004", | ||
| 43 | + "activity_id": "A0001", | ||
| 44 | + "user_id": "U0025", | ||
| 45 | + "registration_id": "R0005", | ||
| 46 | + "checkin_time": "2025-04-02 06:27:22", | ||
| 47 | + "checkin_type": "QR code", | ||
| 48 | + "location": null, | ||
| 49 | + "staff_id": null, | ||
| 50 | + "status": "successful", | ||
| 51 | + "notes": "", | ||
| 52 | + "is_late": false | ||
| 53 | + }, | ||
| 54 | + { | ||
| 55 | + "id": "C0005", | ||
| 56 | + "activity_id": "A0001", | ||
| 57 | + "user_id": "U0012", | ||
| 58 | + "registration_id": "R0006", | ||
| 59 | + "checkin_time": "2025-04-02 06:20:42", | ||
| 60 | + "checkin_type": "QR code", | ||
| 61 | + "location": null, | ||
| 62 | + "staff_id": null, | ||
| 63 | + "status": "successful", | ||
| 64 | + "notes": "", | ||
| 65 | + "is_late": true | ||
| 66 | + }, | ||
| 67 | + { | ||
| 68 | + "id": "C0006", | ||
| 69 | + "activity_id": "A0001", | ||
| 70 | + "user_id": "U0034", | ||
| 71 | + "registration_id": "R0008", | ||
| 72 | + "checkin_time": "2025-04-02 06:31:33", | ||
| 73 | + "checkin_type": "QR code", | ||
| 74 | + "location": null, | ||
| 75 | + "staff_id": null, | ||
| 76 | + "status": "successful", | ||
| 77 | + "notes": "", | ||
| 78 | + "is_late": false | ||
| 79 | + }, | ||
| 80 | + { | ||
| 81 | + "id": "C0007", | ||
| 82 | + "activity_id": "A0001", | ||
| 83 | + "user_id": "U0035", | ||
| 84 | + "registration_id": "R0010", | ||
| 85 | + "checkin_time": "2025-04-02 06:43:04", | ||
| 86 | + "checkin_type": "QR code", | ||
| 87 | + "location": null, | ||
| 88 | + "staff_id": null, | ||
| 89 | + "status": "successful", | ||
| 90 | + "notes": "", | ||
| 91 | + "is_late": false | ||
| 92 | + }, | ||
| 93 | + { | ||
| 94 | + "id": "C0008", | ||
| 95 | + "activity_id": "A0001", | ||
| 96 | + "user_id": "U0008", | ||
| 97 | + "registration_id": "R0011", | ||
| 98 | + "checkin_time": "2025-04-02 06:24:37", | ||
| 99 | + "checkin_type": "QR code", | ||
| 100 | + "location": null, | ||
| 101 | + "staff_id": null, | ||
| 102 | + "status": "successful", | ||
| 103 | + "notes": "带了书本", | ||
| 104 | + "is_late": false | ||
| 105 | + }, | ||
| 106 | + { | ||
| 107 | + "id": "C0009", | ||
| 108 | + "activity_id": "A0001", | ||
| 109 | + "user_id": "U0016", | ||
| 110 | + "registration_id": "R0012", | ||
| 111 | + "checkin_time": "2025-04-02 06:09:02", | ||
| 112 | + "checkin_type": "QR code", | ||
| 113 | + "location": null, | ||
| 114 | + "staff_id": null, | ||
| 115 | + "status": "successful", | ||
| 116 | + "notes": "", | ||
| 117 | + "is_late": false | ||
| 118 | + }, | ||
| 119 | + { | ||
| 120 | + "id": "C0010", | ||
| 121 | + "activity_id": "A0001", | ||
| 122 | + "user_id": "U0009", | ||
| 123 | + "registration_id": "R0014", | ||
| 124 | + "checkin_time": "2025-04-02 06:40:18", | ||
| 125 | + "checkin_type": "QR code", | ||
| 126 | + "location": null, | ||
| 127 | + "staff_id": null, | ||
| 128 | + "status": "successful", | ||
| 129 | + "notes": "带了书本", | ||
| 130 | + "is_late": false | ||
| 131 | + }, | ||
| 132 | + { | ||
| 133 | + "id": "C0011", | ||
| 134 | + "activity_id": "A0001", | ||
| 135 | + "user_id": "U0015", | ||
| 136 | + "registration_id": "R0015", | ||
| 137 | + "checkin_time": "2025-04-02 05:59:41", | ||
| 138 | + "checkin_type": "QR code", | ||
| 139 | + "location": null, | ||
| 140 | + "staff_id": null, | ||
| 141 | + "status": "successful", | ||
| 142 | + "notes": "", | ||
| 143 | + "is_late": false | ||
| 144 | + }, | ||
| 145 | + { | ||
| 146 | + "id": "C0012", | ||
| 147 | + "activity_id": "A0001", | ||
| 148 | + "user_id": "U0019", | ||
| 149 | + "registration_id": "R0016", | ||
| 150 | + "checkin_time": "2025-04-02 06:11:07", | ||
| 151 | + "checkin_type": "QR code", | ||
| 152 | + "location": null, | ||
| 153 | + "staff_id": null, | ||
| 154 | + "status": "successful", | ||
| 155 | + "notes": "", | ||
| 156 | + "is_late": false | ||
| 157 | + }, | ||
| 158 | + { | ||
| 159 | + "id": "C0013", | ||
| 160 | + "activity_id": "A0001", | ||
| 161 | + "user_id": "U0033", | ||
| 162 | + "registration_id": "R0017", | ||
| 163 | + "checkin_time": "2025-04-02 06:24:37", | ||
| 164 | + "checkin_type": "QR code", | ||
| 165 | + "location": null, | ||
| 166 | + "staff_id": null, | ||
| 167 | + "status": "successful", | ||
| 168 | + "notes": "", | ||
| 169 | + "is_late": false | ||
| 170 | + }, | ||
| 171 | + { | ||
| 172 | + "id": "C0014", | ||
| 173 | + "activity_id": "A0001", | ||
| 174 | + "user_id": "U0001", | ||
| 175 | + "registration_id": "R0018", | ||
| 176 | + "checkin_time": "2025-04-02 05:59:19", | ||
| 177 | + "checkin_type": "QR code", | ||
| 178 | + "location": null, | ||
| 179 | + "staff_id": null, | ||
| 180 | + "status": "successful", | ||
| 181 | + "notes": "热情参与讨论", | ||
| 182 | + "is_late": false | ||
| 183 | + }, | ||
| 184 | + { | ||
| 185 | + "id": "C0015", | ||
| 186 | + "activity_id": "A0001", | ||
| 187 | + "user_id": "U0036", | ||
| 188 | + "registration_id": "R0019", | ||
| 189 | + "checkin_time": "2025-04-02 06:06:21", | ||
| 190 | + "checkin_type": "QR code", | ||
| 191 | + "location": null, | ||
| 192 | + "staff_id": null, | ||
| 193 | + "status": "successful", | ||
| 194 | + "notes": "按时到达", | ||
| 195 | + "is_late": false | ||
| 196 | + }, | ||
| 197 | + { | ||
| 198 | + "id": "C0016", | ||
| 199 | + "activity_id": "A0001", | ||
| 200 | + "user_id": "U0004", | ||
| 201 | + "registration_id": "R0020", | ||
| 202 | + "checkin_time": "2025-04-02 06:20:20", | ||
| 203 | + "checkin_type": "manual", | ||
| 204 | + "location": null, | ||
| 205 | + "staff_id": "O0006", | ||
| 206 | + "status": "failed", | ||
| 207 | + "notes": "网络连接不稳定", | ||
| 208 | + "is_late": false | ||
| 209 | + }, | ||
| 210 | + { | ||
| 211 | + "id": "C0017", | ||
| 212 | + "activity_id": "A0001", | ||
| 213 | + "user_id": "U0029", | ||
| 214 | + "registration_id": "R0022", | ||
| 215 | + "checkin_time": "2025-04-02 06:26:13", | ||
| 216 | + "checkin_type": "QR code", | ||
| 217 | + "location": null, | ||
| 218 | + "staff_id": null, | ||
| 219 | + "status": "successful", | ||
| 220 | + "notes": "", | ||
| 221 | + "is_late": false | ||
| 222 | + }, | ||
| 223 | + { | ||
| 224 | + "id": "C0018", | ||
| 225 | + "activity_id": "A0001", | ||
| 226 | + "user_id": "U0031", | ||
| 227 | + "registration_id": "R0023", | ||
| 228 | + "checkin_time": "2025-04-02 06:01:47", | ||
| 229 | + "checkin_type": "self-service", | ||
| 230 | + "location": null, | ||
| 231 | + "staff_id": null, | ||
| 232 | + "status": "successful", | ||
| 233 | + "notes": "", | ||
| 234 | + "is_late": false | ||
| 235 | + }, | ||
| 236 | + { | ||
| 237 | + "id": "C0019", | ||
| 238 | + "activity_id": "A0001", | ||
| 239 | + "user_id": "U0011", | ||
| 240 | + "registration_id": "R0024", | ||
| 241 | + "checkin_time": "2025-04-02 06:01:25", | ||
| 242 | + "checkin_type": "self-service", | ||
| 243 | + "location": null, | ||
| 244 | + "staff_id": null, | ||
| 245 | + "status": "successful", | ||
| 246 | + "notes": "", | ||
| 247 | + "is_late": false | ||
| 248 | + }, | ||
| 249 | + { | ||
| 250 | + "id": "C0020", | ||
| 251 | + "activity_id": "A0001", | ||
| 252 | + "user_id": "U0040", | ||
| 253 | + "registration_id": "R0027", | ||
| 254 | + "checkin_time": "2025-04-02 06:14:06", | ||
| 255 | + "checkin_type": "self-service", | ||
| 256 | + "location": null, | ||
| 257 | + "staff_id": null, | ||
| 258 | + "status": "successful", | ||
| 259 | + "notes": "", | ||
| 260 | + "is_late": false | ||
| 261 | + }, | ||
| 262 | + { | ||
| 263 | + "id": "C0021", | ||
| 264 | + "activity_id": "A0001", | ||
| 265 | + "user_id": "U0003", | ||
| 266 | + "registration_id": "R0028", | ||
| 267 | + "checkin_time": "2025-04-02 05:59:24", | ||
| 268 | + "checkin_type": "self-service", | ||
| 269 | + "location": null, | ||
| 270 | + "staff_id": null, | ||
| 271 | + "status": "successful", | ||
| 272 | + "notes": "", | ||
| 273 | + "is_late": false | ||
| 274 | + }, | ||
| 275 | + { | ||
| 276 | + "id": "C0022", | ||
| 277 | + "activity_id": "A0001", | ||
| 278 | + "user_id": "U0017", | ||
| 279 | + "registration_id": "R0030", | ||
| 280 | + "checkin_time": "2025-04-02 06:18:33", | ||
| 281 | + "checkin_type": "QR code", | ||
| 282 | + "location": null, | ||
| 283 | + "staff_id": null, | ||
| 284 | + "status": "successful", | ||
| 285 | + "notes": "", | ||
| 286 | + "is_late": false | ||
| 287 | + }, | ||
| 288 | + { | ||
| 289 | + "id": "C0023", | ||
| 290 | + "activity_id": "A0001", | ||
| 291 | + "user_id": "U0038", | ||
| 292 | + "registration_id": "R0031", | ||
| 293 | + "checkin_time": "2025-04-02 06:10:30", | ||
| 294 | + "checkin_type": "manual", | ||
| 295 | + "location": null, | ||
| 296 | + "staff_id": "O0006", | ||
| 297 | + "status": "successful", | ||
| 298 | + "notes": "", | ||
| 299 | + "is_late": false | ||
| 300 | + }, | ||
| 301 | + { | ||
| 302 | + "id": "C0024", | ||
| 303 | + "activity_id": "A0001", | ||
| 304 | + "user_id": "U0030", | ||
| 305 | + "registration_id": "R0032", | ||
| 306 | + "checkin_time": "2025-04-02 06:15:42", | ||
| 307 | + "checkin_type": "manual", | ||
| 308 | + "location": null, | ||
| 309 | + "staff_id": "O0006", | ||
| 310 | + "status": "successful", | ||
| 311 | + "notes": "热情参与讨论", | ||
| 312 | + "is_late": false | ||
| 313 | + }, | ||
| 314 | + { | ||
| 315 | + "id": "C0025", | ||
| 316 | + "activity_id": "A0001", | ||
| 317 | + "user_id": "U0022", | ||
| 318 | + "registration_id": "R0033", | ||
| 319 | + "checkin_time": "2025-04-02 06:39:18", | ||
| 320 | + "checkin_type": "QR code", | ||
| 321 | + "location": null, | ||
| 322 | + "staff_id": null, | ||
| 323 | + "status": "successful", | ||
| 324 | + "notes": "带了书本", | ||
| 325 | + "is_late": false | ||
| 326 | + }, | ||
| 327 | + { | ||
| 328 | + "id": "C0026", | ||
| 329 | + "activity_id": "A0001", | ||
| 330 | + "user_id": "U0014", | ||
| 331 | + "registration_id": "R0034", | ||
| 332 | + "checkin_time": "2025-04-02 06:36:11", | ||
| 333 | + "checkin_type": "self-service", | ||
| 334 | + "location": null, | ||
| 335 | + "staff_id": null, | ||
| 336 | + "status": "successful", | ||
| 337 | + "notes": "提前到达", | ||
| 338 | + "is_late": false | ||
| 339 | + }, | ||
| 340 | + { | ||
| 341 | + "id": "C0027", | ||
| 342 | + "activity_id": "A0001", | ||
| 343 | + "user_id": "U0005", | ||
| 344 | + "registration_id": "R0035", | ||
| 345 | + "checkin_time": "2025-04-02 06:27:14", | ||
| 346 | + "checkin_type": "QR code", | ||
| 347 | + "location": null, | ||
| 348 | + "staff_id": null, | ||
| 349 | + "status": "successful", | ||
| 350 | + "notes": "提前到达", | ||
| 351 | + "is_late": false | ||
| 352 | + }, | ||
| 353 | + { | ||
| 354 | + "id": "C0028", | ||
| 355 | + "activity_id": "A0001", | ||
| 356 | + "user_id": "U0039", | ||
| 357 | + "registration_id": "R0037", | ||
| 358 | + "checkin_time": "2025-04-02 06:43:29", | ||
| 359 | + "checkin_type": "QR code", | ||
| 360 | + "location": null, | ||
| 361 | + "staff_id": null, | ||
| 362 | + "status": "successful", | ||
| 363 | + "notes": "", | ||
| 364 | + "is_late": false | ||
| 365 | + }, | ||
| 366 | + { | ||
| 367 | + "id": "C0029", | ||
| 368 | + "activity_id": "A0002", | ||
| 369 | + "user_id": "U0035", | ||
| 370 | + "registration_id": "R0038", | ||
| 371 | + "checkin_time": "2025-03-24 06:26:56", | ||
| 372 | + "checkin_type": "QR code", | ||
| 373 | + "location": { | ||
| 374 | + "name": "深蓝咖啡馆", | ||
| 375 | + "coordinates": "37.181720,114.507089" | ||
| 376 | + }, | ||
| 377 | + "staff_id": null, | ||
| 378 | + "status": "successful", | ||
| 379 | + "notes": "", | ||
| 380 | + "is_late": false | ||
| 381 | + }, | ||
| 382 | + { | ||
| 383 | + "id": "C0030", | ||
| 384 | + "activity_id": "A0002", | ||
| 385 | + "user_id": "U0031", | ||
| 386 | + "registration_id": "R0039", | ||
| 387 | + "checkin_time": "2025-03-24 06:40:17", | ||
| 388 | + "checkin_type": "QR code", | ||
| 389 | + "location": { | ||
| 390 | + "name": "深蓝咖啡馆", | ||
| 391 | + "coordinates": "38.496785,121.640291" | ||
| 392 | + }, | ||
| 393 | + "staff_id": null, | ||
| 394 | + "status": "successful", | ||
| 395 | + "notes": "", | ||
| 396 | + "is_late": false | ||
| 397 | + }, | ||
| 398 | + { | ||
| 399 | + "id": "C0031", | ||
| 400 | + "activity_id": "A0002", | ||
| 401 | + "user_id": "U0011", | ||
| 402 | + "registration_id": "R0040", | ||
| 403 | + "checkin_time": "2025-03-24 06:06:14", | ||
| 404 | + "checkin_type": "QR code", | ||
| 405 | + "location": { | ||
| 406 | + "name": "深蓝咖啡馆", | ||
| 407 | + "coordinates": "29.197808,115.186227" | ||
| 408 | + }, | ||
| 409 | + "staff_id": null, | ||
| 410 | + "status": "failed", | ||
| 411 | + "notes": "网络连接不稳定", | ||
| 412 | + "is_late": false | ||
| 413 | + }, | ||
| 414 | + { | ||
| 415 | + "id": "C0032", | ||
| 416 | + "activity_id": "A0002", | ||
| 417 | + "user_id": "U0032", | ||
| 418 | + "registration_id": "R0041", | ||
| 419 | + "checkin_time": "2025-03-24 06:17:34", | ||
| 420 | + "checkin_type": "QR code", | ||
| 421 | + "location": { | ||
| 422 | + "name": "深蓝咖啡馆", | ||
| 423 | + "coordinates": "36.369072,107.966159" | ||
| 424 | + }, | ||
| 425 | + "staff_id": null, | ||
| 426 | + "status": "successful", | ||
| 427 | + "notes": "", | ||
| 428 | + "is_late": true | ||
| 429 | + }, | ||
| 430 | + { | ||
| 431 | + "id": "C0033", | ||
| 432 | + "activity_id": "A0002", | ||
| 433 | + "user_id": "U0009", | ||
| 434 | + "registration_id": "R0043", | ||
| 435 | + "checkin_time": "2025-03-24 06:37:51", | ||
| 436 | + "checkin_type": "QR code", | ||
| 437 | + "location": { | ||
| 438 | + "name": "深蓝咖啡馆", | ||
| 439 | + "coordinates": "24.090606,121.419792" | ||
| 440 | + }, | ||
| 441 | + "staff_id": null, | ||
| 442 | + "status": "successful", | ||
| 443 | + "notes": "", | ||
| 444 | + "is_late": true | ||
| 445 | + }, | ||
| 446 | + { | ||
| 447 | + "id": "C0034", | ||
| 448 | + "activity_id": "A0002", | ||
| 449 | + "user_id": "U0018", | ||
| 450 | + "registration_id": "R0044", | ||
| 451 | + "checkin_time": "2025-03-24 06:37:28", | ||
| 452 | + "checkin_type": "QR code", | ||
| 453 | + "location": { | ||
| 454 | + "name": "深蓝咖啡馆", | ||
| 455 | + "coordinates": "24.317278,113.834895" | ||
| 456 | + }, | ||
| 457 | + "staff_id": null, | ||
| 458 | + "status": "successful", | ||
| 459 | + "notes": "", | ||
| 460 | + "is_late": false | ||
| 461 | + }, | ||
| 462 | + { | ||
| 463 | + "id": "C0035", | ||
| 464 | + "activity_id": "A0002", | ||
| 465 | + "user_id": "U0008", | ||
| 466 | + "registration_id": "R0045", | ||
| 467 | + "checkin_time": "2025-03-24 06:06:55", | ||
| 468 | + "checkin_type": "QR code", | ||
| 469 | + "location": { | ||
| 470 | + "name": "深蓝咖啡馆", | ||
| 471 | + "coordinates": "28.173906,120.708227" | ||
| 472 | + }, | ||
| 473 | + "staff_id": null, | ||
| 474 | + "status": "successful", | ||
| 475 | + "notes": "", | ||
| 476 | + "is_late": false | ||
| 477 | + }, | ||
| 478 | + { | ||
| 479 | + "id": "C0036", | ||
| 480 | + "activity_id": "A0002", | ||
| 481 | + "user_id": "U0025", | ||
| 482 | + "registration_id": "R0046", | ||
| 483 | + "checkin_time": "2025-03-24 06:26:03", | ||
| 484 | + "checkin_type": "manual", | ||
| 485 | + "location": { | ||
| 486 | + "name": "深蓝咖啡馆", | ||
| 487 | + "coordinates": "32.612174,103.031492" | ||
| 488 | + }, | ||
| 489 | + "staff_id": "O0003", | ||
| 490 | + "status": "successful", | ||
| 491 | + "notes": "", | ||
| 492 | + "is_late": false | ||
| 493 | + }, | ||
| 494 | + { | ||
| 495 | + "id": "C0037", | ||
| 496 | + "activity_id": "A0002", | ||
| 497 | + "user_id": "U0030", | ||
| 498 | + "registration_id": "R0047", | ||
| 499 | + "checkin_time": "2025-03-24 06:24:16", | ||
| 500 | + "checkin_type": "QR code", | ||
| 501 | + "location": { | ||
| 502 | + "name": "深蓝咖啡馆", | ||
| 503 | + "coordinates": "26.712645,111.630994" | ||
| 504 | + }, | ||
| 505 | + "staff_id": null, | ||
| 506 | + "status": "successful", | ||
| 507 | + "notes": "按时到达", | ||
| 508 | + "is_late": false | ||
| 509 | + }, | ||
| 510 | + { | ||
| 511 | + "id": "C0038", | ||
| 512 | + "activity_id": "A0002", | ||
| 513 | + "user_id": "U0022", | ||
| 514 | + "registration_id": "R0048", | ||
| 515 | + "checkin_time": "2025-03-24 06:12:56", | ||
| 516 | + "checkin_type": "QR code", | ||
| 517 | + "location": { | ||
| 518 | + "name": "深蓝咖啡馆", | ||
| 519 | + "coordinates": "24.159576,109.678518" | ||
| 520 | + }, | ||
| 521 | + "staff_id": null, | ||
| 522 | + "status": "successful", | ||
| 523 | + "notes": "带了书本", | ||
| 524 | + "is_late": false | ||
| 525 | + }, | ||
| 526 | + { | ||
| 527 | + "id": "C0039", | ||
| 528 | + "activity_id": "A0002", | ||
| 529 | + "user_id": "U0026", | ||
| 530 | + "registration_id": "R0049", | ||
| 531 | + "checkin_time": "2025-03-24 06:36:47", | ||
| 532 | + "checkin_type": "QR code", | ||
| 533 | + "location": { | ||
| 534 | + "name": "深蓝咖啡馆", | ||
| 535 | + "coordinates": "23.120311,112.843124" | ||
| 536 | + }, | ||
| 537 | + "staff_id": null, | ||
| 538 | + "status": "successful", | ||
| 539 | + "notes": "", | ||
| 540 | + "is_late": true | ||
| 541 | + }, | ||
| 542 | + { | ||
| 543 | + "id": "C0040", | ||
| 544 | + "activity_id": "A0002", | ||
| 545 | + "user_id": "U0016", | ||
| 546 | + "registration_id": "R0050", | ||
| 547 | + "checkin_time": "2025-03-24 06:08:26", | ||
| 548 | + "checkin_type": "manual", | ||
| 549 | + "location": { | ||
| 550 | + "name": "深蓝咖啡馆", | ||
| 551 | + "coordinates": "39.064207,125.051377" | ||
| 552 | + }, | ||
| 553 | + "staff_id": "O0003", | ||
| 554 | + "status": "successful", | ||
| 555 | + "notes": "", | ||
| 556 | + "is_late": false | ||
| 557 | + }, | ||
| 558 | + { | ||
| 559 | + "id": "C0041", | ||
| 560 | + "activity_id": "A0002", | ||
| 561 | + "user_id": "U0006", | ||
| 562 | + "registration_id": "R0051", | ||
| 563 | + "checkin_time": "2025-03-24 06:38:14", | ||
| 564 | + "checkin_type": "QR code", | ||
| 565 | + "location": { | ||
| 566 | + "name": "深蓝咖啡馆", | ||
| 567 | + "coordinates": "39.771853,103.340475" | ||
| 568 | + }, | ||
| 569 | + "staff_id": null, | ||
| 570 | + "status": "successful", | ||
| 571 | + "notes": "", | ||
| 572 | + "is_late": false | ||
| 573 | + }, | ||
| 574 | + { | ||
| 575 | + "id": "C0042", | ||
| 576 | + "activity_id": "A0002", | ||
| 577 | + "user_id": "U0017", | ||
| 578 | + "registration_id": "R0052", | ||
| 579 | + "checkin_time": "2025-03-24 06:38:41", | ||
| 580 | + "checkin_type": "QR code", | ||
| 581 | + "location": { | ||
| 582 | + "name": "深蓝咖啡馆", | ||
| 583 | + "coordinates": "28.109123,117.999368" | ||
| 584 | + }, | ||
| 585 | + "staff_id": null, | ||
| 586 | + "status": "failed", | ||
| 587 | + "notes": "未携带所需材料", | ||
| 588 | + "is_late": false | ||
| 589 | + }, | ||
| 590 | + { | ||
| 591 | + "id": "C0043", | ||
| 592 | + "activity_id": "A0002", | ||
| 593 | + "user_id": "U0023", | ||
| 594 | + "registration_id": "R0053", | ||
| 595 | + "checkin_time": "2025-03-24 06:28:37", | ||
| 596 | + "checkin_type": "QR code", | ||
| 597 | + "location": { | ||
| 598 | + "name": "深蓝咖啡馆", | ||
| 599 | + "coordinates": "26.399555,107.803150" | ||
| 600 | + }, | ||
| 601 | + "staff_id": null, | ||
| 602 | + "status": "successful", | ||
| 603 | + "notes": "", | ||
| 604 | + "is_late": false | ||
| 605 | + }, | ||
| 606 | + { | ||
| 607 | + "id": "C0044", | ||
| 608 | + "activity_id": "A0002", | ||
| 609 | + "user_id": "U0020", | ||
| 610 | + "registration_id": "R0054", | ||
| 611 | + "checkin_time": "2025-03-24 06:26:01", | ||
| 612 | + "checkin_type": "QR code", | ||
| 613 | + "location": { | ||
| 614 | + "name": "深蓝咖啡馆", | ||
| 615 | + "coordinates": "35.961689,105.194244" | ||
| 616 | + }, | ||
| 617 | + "staff_id": null, | ||
| 618 | + "status": "successful", | ||
| 619 | + "notes": "", | ||
| 620 | + "is_late": false | ||
| 621 | + }, | ||
| 622 | + { | ||
| 623 | + "id": "C0045", | ||
| 624 | + "activity_id": "A0002", | ||
| 625 | + "user_id": "U0002", | ||
| 626 | + "registration_id": "R0055", | ||
| 627 | + "checkin_time": "2025-03-24 06:17:24", | ||
| 628 | + "checkin_type": "QR code", | ||
| 629 | + "location": { | ||
| 630 | + "name": "深蓝咖啡馆", | ||
| 631 | + "coordinates": "38.805465,124.606647" | ||
| 632 | + }, | ||
| 633 | + "staff_id": null, | ||
| 634 | + "status": "successful", | ||
| 635 | + "notes": "", | ||
| 636 | + "is_late": true | ||
| 637 | + }, | ||
| 638 | + { | ||
| 639 | + "id": "C0046", | ||
| 640 | + "activity_id": "A0002", | ||
| 641 | + "user_id": "U0003", | ||
| 642 | + "registration_id": "R0057", | ||
| 643 | + "checkin_time": "2025-03-24 06:23:32", | ||
| 644 | + "checkin_type": "manual", | ||
| 645 | + "location": { | ||
| 646 | + "name": "深蓝咖啡馆", | ||
| 647 | + "coordinates": "26.842865,115.187406" | ||
| 648 | + }, | ||
| 649 | + "staff_id": "O0003", | ||
| 650 | + "status": "successful", | ||
| 651 | + "notes": "", | ||
| 652 | + "is_late": true | ||
| 653 | + }, | ||
| 654 | + { | ||
| 655 | + "id": "C0047", | ||
| 656 | + "activity_id": "A0002", | ||
| 657 | + "user_id": "U0021", | ||
| 658 | + "registration_id": "R0058", | ||
| 659 | + "checkin_time": "2025-03-24 06:01:19", | ||
| 660 | + "checkin_type": "QR code", | ||
| 661 | + "location": { | ||
| 662 | + "name": "深蓝咖啡馆", | ||
| 663 | + "coordinates": "31.048369,122.562894" | ||
| 664 | + }, | ||
| 665 | + "staff_id": null, | ||
| 666 | + "status": "successful", | ||
| 667 | + "notes": "提前到达", | ||
| 668 | + "is_late": false | ||
| 669 | + }, | ||
| 670 | + { | ||
| 671 | + "id": "C0048", | ||
| 672 | + "activity_id": "A0002", | ||
| 673 | + "user_id": "U0024", | ||
| 674 | + "registration_id": "R0059", | ||
| 675 | + "checkin_time": "2025-03-24 06:07:08", | ||
| 676 | + "checkin_type": "QR code", | ||
| 677 | + "location": { | ||
| 678 | + "name": "深蓝咖啡馆", | ||
| 679 | + "coordinates": "36.666997,102.016997" | ||
| 680 | + }, | ||
| 681 | + "staff_id": null, | ||
| 682 | + "status": "successful", | ||
| 683 | + "notes": "", | ||
| 684 | + "is_late": false | ||
| 685 | + }, | ||
| 686 | + { | ||
| 687 | + "id": "C0049", | ||
| 688 | + "activity_id": "A0002", | ||
| 689 | + "user_id": "U0037", | ||
| 690 | + "registration_id": "R0061", | ||
| 691 | + "checkin_time": "2025-03-24 06:39:21", | ||
| 692 | + "checkin_type": "QR code", | ||
| 693 | + "location": { | ||
| 694 | + "name": "深蓝咖啡馆", | ||
| 695 | + "coordinates": "26.657286,112.659843" | ||
| 696 | + }, | ||
| 697 | + "staff_id": null, | ||
| 698 | + "status": "successful", | ||
| 699 | + "notes": "", | ||
| 700 | + "is_late": true | ||
| 701 | + }, | ||
| 702 | + { | ||
| 703 | + "id": "C0050", | ||
| 704 | + "activity_id": "A0002", | ||
| 705 | + "user_id": "U0012", | ||
| 706 | + "registration_id": "R0063", | ||
| 707 | + "checkin_time": "2025-03-24 06:24:17", | ||
| 708 | + "checkin_type": "QR code", | ||
| 709 | + "location": { | ||
| 710 | + "name": "深蓝咖啡馆", | ||
| 711 | + "coordinates": "39.694284,109.014524" | ||
| 712 | + }, | ||
| 713 | + "staff_id": null, | ||
| 714 | + "status": "successful", | ||
| 715 | + "notes": "提前到达", | ||
| 716 | + "is_late": true | ||
| 717 | + }, | ||
| 718 | + { | ||
| 719 | + "id": "C0051", | ||
| 720 | + "activity_id": "A0002", | ||
| 721 | + "user_id": "U0014", | ||
| 722 | + "registration_id": "R0064", | ||
| 723 | + "checkin_time": "2025-03-24 06:19:52", | ||
| 724 | + "checkin_type": "manual", | ||
| 725 | + "location": { | ||
| 726 | + "name": "深蓝咖啡馆", | ||
| 727 | + "coordinates": "39.330172,105.342768" | ||
| 728 | + }, | ||
| 729 | + "staff_id": "O0003", | ||
| 730 | + "status": "successful", | ||
| 731 | + "notes": "", | ||
| 732 | + "is_late": false | ||
| 733 | + }, | ||
| 734 | + { | ||
| 735 | + "id": "C0052", | ||
| 736 | + "activity_id": "A0002", | ||
| 737 | + "user_id": "U0010", | ||
| 738 | + "registration_id": "R0065", | ||
| 739 | + "checkin_time": "2025-03-24 06:51:43", | ||
| 740 | + "checkin_type": "QR code", | ||
| 741 | + "location": { | ||
| 742 | + "name": "深蓝咖啡馆", | ||
| 743 | + "coordinates": "27.822307,110.880438" | ||
| 744 | + }, | ||
| 745 | + "staff_id": null, | ||
| 746 | + "status": "successful", | ||
| 747 | + "notes": "", | ||
| 748 | + "is_late": true | ||
| 749 | + }, | ||
| 750 | + { | ||
| 751 | + "id": "C0053", | ||
| 752 | + "activity_id": "A0002", | ||
| 753 | + "user_id": "U0034", | ||
| 754 | + "registration_id": "R0066", | ||
| 755 | + "checkin_time": "2025-03-24 06:24:07", | ||
| 756 | + "checkin_type": "QR code", | ||
| 757 | + "location": { | ||
| 758 | + "name": "深蓝咖啡馆", | ||
| 759 | + "coordinates": "37.010299,118.129043" | ||
| 760 | + }, | ||
| 761 | + "staff_id": null, | ||
| 762 | + "status": "successful", | ||
| 763 | + "notes": "", | ||
| 764 | + "is_late": false | ||
| 765 | + }, | ||
| 766 | + { | ||
| 767 | + "id": "C0054", | ||
| 768 | + "activity_id": "A0002", | ||
| 769 | + "user_id": "U0039", | ||
| 770 | + "registration_id": "R0067", | ||
| 771 | + "checkin_time": "2025-03-24 06:39:58", | ||
| 772 | + "checkin_type": "QR code", | ||
| 773 | + "location": { | ||
| 774 | + "name": "深蓝咖啡馆", | ||
| 775 | + "coordinates": "24.617110,119.003828" | ||
| 776 | + }, | ||
| 777 | + "staff_id": null, | ||
| 778 | + "status": "successful", | ||
| 779 | + "notes": "热情参与讨论", | ||
| 780 | + "is_late": false | ||
| 781 | + }, | ||
| 782 | + { | ||
| 783 | + "id": "C0055", | ||
| 784 | + "activity_id": "A0002", | ||
| 785 | + "user_id": "U0001", | ||
| 786 | + "registration_id": "R0068", | ||
| 787 | + "checkin_time": "2025-03-24 06:35:33", | ||
| 788 | + "checkin_type": "self-service", | ||
| 789 | + "location": { | ||
| 790 | + "name": "深蓝咖啡馆", | ||
| 791 | + "coordinates": "32.183967,110.892548" | ||
| 792 | + }, | ||
| 793 | + "staff_id": null, | ||
| 794 | + "status": "successful", | ||
| 795 | + "notes": "准备充分", | ||
| 796 | + "is_late": true | ||
| 797 | + }, | ||
| 798 | + { | ||
| 799 | + "id": "C0056", | ||
| 800 | + "activity_id": "A0002", | ||
| 801 | + "user_id": "U0028", | ||
| 802 | + "registration_id": "R0069", | ||
| 803 | + "checkin_time": "2025-03-24 06:22:47", | ||
| 804 | + "checkin_type": "self-service", | ||
| 805 | + "location": { | ||
| 806 | + "name": "深蓝咖啡馆", | ||
| 807 | + "coordinates": "37.102393,104.723842" | ||
| 808 | + }, | ||
| 809 | + "staff_id": null, | ||
| 810 | + "status": "successful", | ||
| 811 | + "notes": "", | ||
| 812 | + "is_late": false | ||
| 813 | + }, | ||
| 814 | + { | ||
| 815 | + "id": "C0057", | ||
| 816 | + "activity_id": "A0002", | ||
| 817 | + "user_id": "U0027", | ||
| 818 | + "registration_id": "R0070", | ||
| 819 | + "checkin_time": "2025-03-24 06:22:44", | ||
| 820 | + "checkin_type": "manual", | ||
| 821 | + "location": { | ||
| 822 | + "name": "深蓝咖啡馆", | ||
| 823 | + "coordinates": "35.022102,120.845595" | ||
| 824 | + }, | ||
| 825 | + "staff_id": "O0003", | ||
| 826 | + "status": "successful", | ||
| 827 | + "notes": "", | ||
| 828 | + "is_late": true | ||
| 829 | + }, | ||
| 830 | + { | ||
| 831 | + "id": "C0058", | ||
| 832 | + "activity_id": "A0002", | ||
| 833 | + "user_id": "U0013", | ||
| 834 | + "registration_id": "R0071", | ||
| 835 | + "checkin_time": "2025-03-24 06:29:54", | ||
| 836 | + "checkin_type": "QR code", | ||
| 837 | + "location": { | ||
| 838 | + "name": "深蓝咖啡馆", | ||
| 839 | + "coordinates": "27.520250,106.998565" | ||
| 840 | + }, | ||
| 841 | + "staff_id": null, | ||
| 842 | + "status": "successful", | ||
| 843 | + "notes": "", | ||
| 844 | + "is_late": false | ||
| 845 | + }, | ||
| 846 | + { | ||
| 847 | + "id": "C0059", | ||
| 848 | + "activity_id": "A0002", | ||
| 849 | + "user_id": "U0036", | ||
| 850 | + "registration_id": "R0072", | ||
| 851 | + "checkin_time": "2025-03-24 06:15:52", | ||
| 852 | + "checkin_type": "QR code", | ||
| 853 | + "location": { | ||
| 854 | + "name": "深蓝咖啡馆", | ||
| 855 | + "coordinates": "22.586642,106.806636" | ||
| 856 | + }, | ||
| 857 | + "staff_id": null, | ||
| 858 | + "status": "successful", | ||
| 859 | + "notes": "提前到达", | ||
| 860 | + "is_late": false | ||
| 861 | + }, | ||
| 862 | + { | ||
| 863 | + "id": "C0060", | ||
| 864 | + "activity_id": "A0002", | ||
| 865 | + "user_id": "U0004", | ||
| 866 | + "registration_id": "R0073", | ||
| 867 | + "checkin_time": "2025-03-24 06:14:19", | ||
| 868 | + "checkin_type": "QR code", | ||
| 869 | + "location": { | ||
| 870 | + "name": "深蓝咖啡馆", | ||
| 871 | + "coordinates": "34.054279,106.738680" | ||
| 872 | + }, | ||
| 873 | + "staff_id": null, | ||
| 874 | + "status": "successful", | ||
| 875 | + "notes": "按时到达", | ||
| 876 | + "is_late": false | ||
| 877 | + }, | ||
| 878 | + { | ||
| 879 | + "id": "C0061", | ||
| 880 | + "activity_id": "A0002", | ||
| 881 | + "user_id": "U0040", | ||
| 882 | + "registration_id": "R0074", | ||
| 883 | + "checkin_time": "2025-03-24 06:26:57", | ||
| 884 | + "checkin_type": "manual", | ||
| 885 | + "location": { | ||
| 886 | + "name": "深蓝咖啡馆", | ||
| 887 | + "coordinates": "35.010409,123.112389" | ||
| 888 | + }, | ||
| 889 | + "staff_id": "O0003", | ||
| 890 | + "status": "successful", | ||
| 891 | + "notes": "", | ||
| 892 | + "is_late": false | ||
| 893 | + }, | ||
| 894 | + { | ||
| 895 | + "id": "C0062", | ||
| 896 | + "activity_id": "A0002", | ||
| 897 | + "user_id": "U0005", | ||
| 898 | + "registration_id": "R0075", | ||
| 899 | + "checkin_time": "2025-03-24 06:34:07", | ||
| 900 | + "checkin_type": "QR code", | ||
| 901 | + "location": { | ||
| 902 | + "name": "深蓝咖啡馆", | ||
| 903 | + "coordinates": "29.606431,116.433917" | ||
| 904 | + }, | ||
| 905 | + "staff_id": null, | ||
| 906 | + "status": "successful", | ||
| 907 | + "notes": "", | ||
| 908 | + "is_late": false | ||
| 909 | + }, | ||
| 910 | + { | ||
| 911 | + "id": "C0063", | ||
| 912 | + "activity_id": "A0002", | ||
| 913 | + "user_id": "U0033", | ||
| 914 | + "registration_id": "R0077", | ||
| 915 | + "checkin_time": "2025-03-24 06:27:57", | ||
| 916 | + "checkin_type": "QR code", | ||
| 917 | + "location": { | ||
| 918 | + "name": "深蓝咖啡馆", | ||
| 919 | + "coordinates": "33.496844,120.165656" | ||
| 920 | + }, | ||
| 921 | + "staff_id": null, | ||
| 922 | + "status": "successful", | ||
| 923 | + "notes": "", | ||
| 924 | + "is_late": false | ||
| 925 | + }, | ||
| 926 | + { | ||
| 927 | + "id": "C0064", | ||
| 928 | + "activity_id": "A0007", | ||
| 929 | + "user_id": "U0031", | ||
| 930 | + "registration_id": "R0101", | ||
| 931 | + "checkin_time": "2025-04-03 05:12:17", | ||
| 932 | + "checkin_type": "QR code", | ||
| 933 | + "location": { | ||
| 934 | + "name": "熊猫书房", | ||
| 935 | + "coordinates": "37.519897,120.666728" | ||
| 936 | + }, | ||
| 937 | + "staff_id": null, | ||
| 938 | + "status": "successful", | ||
| 939 | + "notes": "准备充分", | ||
| 940 | + "is_late": false | ||
| 941 | + }, | ||
| 942 | + { | ||
| 943 | + "id": "C0065", | ||
| 944 | + "activity_id": "A0007", | ||
| 945 | + "user_id": "U0039", | ||
| 946 | + "registration_id": "R0102", | ||
| 947 | + "checkin_time": "2025-04-03 05:43:42", | ||
| 948 | + "checkin_type": "QR code", | ||
| 949 | + "location": { | ||
| 950 | + "name": "熊猫书房", | ||
| 951 | + "coordinates": "23.325053,124.389998" | ||
| 952 | + }, | ||
| 953 | + "staff_id": null, | ||
| 954 | + "status": "successful", | ||
| 955 | + "notes": "", | ||
| 956 | + "is_late": false | ||
| 957 | + }, | ||
| 958 | + { | ||
| 959 | + "id": "C0066", | ||
| 960 | + "activity_id": "A0007", | ||
| 961 | + "user_id": "U0040", | ||
| 962 | + "registration_id": "R0103", | ||
| 963 | + "checkin_time": "2025-04-03 05:36:39", | ||
| 964 | + "checkin_type": "manual", | ||
| 965 | + "location": { | ||
| 966 | + "name": "熊猫书房", | ||
| 967 | + "coordinates": "29.006041,121.944115" | ||
| 968 | + }, | ||
| 969 | + "staff_id": "O0006", | ||
| 970 | + "status": "successful", | ||
| 971 | + "notes": "", | ||
| 972 | + "is_late": false | ||
| 973 | + }, | ||
| 974 | + { | ||
| 975 | + "id": "C0067", | ||
| 976 | + "activity_id": "A0007", | ||
| 977 | + "user_id": "U0022", | ||
| 978 | + "registration_id": "R0104", | ||
| 979 | + "checkin_time": "2025-04-03 05:27:17", | ||
| 980 | + "checkin_type": "QR code", | ||
| 981 | + "location": { | ||
| 982 | + "name": "熊猫书房", | ||
| 983 | + "coordinates": "23.882683,105.402504" | ||
| 984 | + }, | ||
| 985 | + "staff_id": null, | ||
| 986 | + "status": "successful", | ||
| 987 | + "notes": "准备充分", | ||
| 988 | + "is_late": false | ||
| 989 | + }, | ||
| 990 | + { | ||
| 991 | + "id": "C0068", | ||
| 992 | + "activity_id": "A0007", | ||
| 993 | + "user_id": "U0015", | ||
| 994 | + "registration_id": "R0106", | ||
| 995 | + "checkin_time": "2025-04-03 05:27:01", | ||
| 996 | + "checkin_type": "QR code", | ||
| 997 | + "location": { | ||
| 998 | + "name": "熊猫书房", | ||
| 999 | + "coordinates": "37.561985,116.624272" | ||
| 1000 | + }, | ||
| 1001 | + "staff_id": null, | ||
| 1002 | + "status": "successful", | ||
| 1003 | + "notes": "", | ||
| 1004 | + "is_late": false | ||
| 1005 | + }, | ||
| 1006 | + { | ||
| 1007 | + "id": "C0069", | ||
| 1008 | + "activity_id": "A0007", | ||
| 1009 | + "user_id": "U0020", | ||
| 1010 | + "registration_id": "R0107", | ||
| 1011 | + "checkin_time": "2025-04-03 05:08:09", | ||
| 1012 | + "checkin_type": "QR code", | ||
| 1013 | + "location": { | ||
| 1014 | + "name": "熊猫书房", | ||
| 1015 | + "coordinates": "36.575256,121.636347" | ||
| 1016 | + }, | ||
| 1017 | + "staff_id": null, | ||
| 1018 | + "status": "successful", | ||
| 1019 | + "notes": "", | ||
| 1020 | + "is_late": false | ||
| 1021 | + }, | ||
| 1022 | + { | ||
| 1023 | + "id": "C0070", | ||
| 1024 | + "activity_id": "A0007", | ||
| 1025 | + "user_id": "U0038", | ||
| 1026 | + "registration_id": "R0108", | ||
| 1027 | + "checkin_time": "2025-04-03 05:21:29", | ||
| 1028 | + "checkin_type": "self-service", | ||
| 1029 | + "location": { | ||
| 1030 | + "name": "熊猫书房", | ||
| 1031 | + "coordinates": "27.958669,101.467384" | ||
| 1032 | + }, | ||
| 1033 | + "staff_id": null, | ||
| 1034 | + "status": "successful", | ||
| 1035 | + "notes": "", | ||
| 1036 | + "is_late": false | ||
| 1037 | + }, | ||
| 1038 | + { | ||
| 1039 | + "id": "C0071", | ||
| 1040 | + "activity_id": "A0007", | ||
| 1041 | + "user_id": "U0014", | ||
| 1042 | + "registration_id": "R0109", | ||
| 1043 | + "checkin_time": "2025-04-03 05:22:20", | ||
| 1044 | + "checkin_type": "self-service", | ||
| 1045 | + "location": { | ||
| 1046 | + "name": "熊猫书房", | ||
| 1047 | + "coordinates": "37.434346,114.067180" | ||
| 1048 | + }, | ||
| 1049 | + "staff_id": null, | ||
| 1050 | + "status": "successful", | ||
| 1051 | + "notes": "", | ||
| 1052 | + "is_late": false | ||
| 1053 | + }, | ||
| 1054 | + { | ||
| 1055 | + "id": "C0072", | ||
| 1056 | + "activity_id": "A0007", | ||
| 1057 | + "user_id": "U0011", | ||
| 1058 | + "registration_id": "R0110", | ||
| 1059 | + "checkin_time": "2025-04-03 05:08:27", | ||
| 1060 | + "checkin_type": "manual", | ||
| 1061 | + "location": { | ||
| 1062 | + "name": "熊猫书房", | ||
| 1063 | + "coordinates": "35.202228,124.219237" | ||
| 1064 | + }, | ||
| 1065 | + "staff_id": "O0006", | ||
| 1066 | + "status": "successful", | ||
| 1067 | + "notes": "热情参与讨论", | ||
| 1068 | + "is_late": false | ||
| 1069 | + }, | ||
| 1070 | + { | ||
| 1071 | + "id": "C0073", | ||
| 1072 | + "activity_id": "A0007", | ||
| 1073 | + "user_id": "U0034", | ||
| 1074 | + "registration_id": "R0111", | ||
| 1075 | + "checkin_time": "2025-04-03 05:35:07", | ||
| 1076 | + "checkin_type": "QR code", | ||
| 1077 | + "location": { | ||
| 1078 | + "name": "熊猫书房", | ||
| 1079 | + "coordinates": "30.140811,113.054793" | ||
| 1080 | + }, | ||
| 1081 | + "staff_id": null, | ||
| 1082 | + "status": "successful", | ||
| 1083 | + "notes": "", | ||
| 1084 | + "is_late": false | ||
| 1085 | + }, | ||
| 1086 | + { | ||
| 1087 | + "id": "C0074", | ||
| 1088 | + "activity_id": "A0007", | ||
| 1089 | + "user_id": "U0010", | ||
| 1090 | + "registration_id": "R0112", | ||
| 1091 | + "checkin_time": "2025-04-03 05:18:04", | ||
| 1092 | + "checkin_type": "QR code", | ||
| 1093 | + "location": { | ||
| 1094 | + "name": "熊猫书房", | ||
| 1095 | + "coordinates": "26.209453,123.344462" | ||
| 1096 | + }, | ||
| 1097 | + "staff_id": null, | ||
| 1098 | + "status": "failed", | ||
| 1099 | + "notes": "未携带所需材料", | ||
| 1100 | + "is_late": false | ||
| 1101 | + }, | ||
| 1102 | + { | ||
| 1103 | + "id": "C0075", | ||
| 1104 | + "activity_id": "A0007", | ||
| 1105 | + "user_id": "U0017", | ||
| 1106 | + "registration_id": "R0113", | ||
| 1107 | + "checkin_time": "2025-04-03 05:30:44", | ||
| 1108 | + "checkin_type": "QR code", | ||
| 1109 | + "location": { | ||
| 1110 | + "name": "熊猫书房", | ||
| 1111 | + "coordinates": "39.520586,111.230061" | ||
| 1112 | + }, | ||
| 1113 | + "staff_id": null, | ||
| 1114 | + "status": "successful", | ||
| 1115 | + "notes": "", | ||
| 1116 | + "is_late": false | ||
| 1117 | + }, | ||
| 1118 | + { | ||
| 1119 | + "id": "C0076", | ||
| 1120 | + "activity_id": "A0007", | ||
| 1121 | + "user_id": "U0006", | ||
| 1122 | + "registration_id": "R0115", | ||
| 1123 | + "checkin_time": "2025-04-03 05:35:32", | ||
| 1124 | + "checkin_type": "QR code", | ||
| 1125 | + "location": { | ||
| 1126 | + "name": "熊猫书房", | ||
| 1127 | + "coordinates": "22.854964,103.303204" | ||
| 1128 | + }, | ||
| 1129 | + "staff_id": null, | ||
| 1130 | + "status": "successful", | ||
| 1131 | + "notes": "按时到达", | ||
| 1132 | + "is_late": false | ||
| 1133 | + }, | ||
| 1134 | + { | ||
| 1135 | + "id": "C0077", | ||
| 1136 | + "activity_id": "A0007", | ||
| 1137 | + "user_id": "U0030", | ||
| 1138 | + "registration_id": "R0116", | ||
| 1139 | + "checkin_time": "2025-04-03 05:22:00", | ||
| 1140 | + "checkin_type": "self-service", | ||
| 1141 | + "location": { | ||
| 1142 | + "name": "熊猫书房", | ||
| 1143 | + "coordinates": "33.919211,117.039781" | ||
| 1144 | + }, | ||
| 1145 | + "staff_id": null, | ||
| 1146 | + "status": "successful", | ||
| 1147 | + "notes": "", | ||
| 1148 | + "is_late": false | ||
| 1149 | + }, | ||
| 1150 | + { | ||
| 1151 | + "id": "C0078", | ||
| 1152 | + "activity_id": "A0007", | ||
| 1153 | + "user_id": "U0036", | ||
| 1154 | + "registration_id": "R0117", | ||
| 1155 | + "checkin_time": "2025-04-03 05:14:00", | ||
| 1156 | + "checkin_type": "QR code", | ||
| 1157 | + "location": { | ||
| 1158 | + "name": "熊猫书房", | ||
| 1159 | + "coordinates": "22.389473,121.064134" | ||
| 1160 | + }, | ||
| 1161 | + "staff_id": null, | ||
| 1162 | + "status": "successful", | ||
| 1163 | + "notes": "", | ||
| 1164 | + "is_late": false | ||
| 1165 | + }, | ||
| 1166 | + { | ||
| 1167 | + "id": "C0079", | ||
| 1168 | + "activity_id": "A0007", | ||
| 1169 | + "user_id": "U0025", | ||
| 1170 | + "registration_id": "R0118", | ||
| 1171 | + "checkin_time": "2025-04-03 05:34:15", | ||
| 1172 | + "checkin_type": "manual", | ||
| 1173 | + "location": { | ||
| 1174 | + "name": "熊猫书房", | ||
| 1175 | + "coordinates": "23.279344,121.133817" | ||
| 1176 | + }, | ||
| 1177 | + "staff_id": "O0006", | ||
| 1178 | + "status": "successful", | ||
| 1179 | + "notes": "准备充分", | ||
| 1180 | + "is_late": false | ||
| 1181 | + }, | ||
| 1182 | + { | ||
| 1183 | + "id": "C0080", | ||
| 1184 | + "activity_id": "A0007", | ||
| 1185 | + "user_id": "U0008", | ||
| 1186 | + "registration_id": "R0120", | ||
| 1187 | + "checkin_time": "2025-04-03 05:29:55", | ||
| 1188 | + "checkin_type": "self-service", | ||
| 1189 | + "location": { | ||
| 1190 | + "name": "熊猫书房", | ||
| 1191 | + "coordinates": "26.897514,110.258579" | ||
| 1192 | + }, | ||
| 1193 | + "staff_id": null, | ||
| 1194 | + "status": "failed", | ||
| 1195 | + "notes": "未携带所需材料", | ||
| 1196 | + "is_late": false | ||
| 1197 | + }, | ||
| 1198 | + { | ||
| 1199 | + "id": "C0081", | ||
| 1200 | + "activity_id": "A0007", | ||
| 1201 | + "user_id": "U0009", | ||
| 1202 | + "registration_id": "R0122", | ||
| 1203 | + "checkin_time": "2025-04-03 05:19:05", | ||
| 1204 | + "checkin_type": "manual", | ||
| 1205 | + "location": { | ||
| 1206 | + "name": "熊猫书房", | ||
| 1207 | + "coordinates": "37.908705,105.332370" | ||
| 1208 | + }, | ||
| 1209 | + "staff_id": "O0006", | ||
| 1210 | + "status": "successful", | ||
| 1211 | + "notes": "", | ||
| 1212 | + "is_late": false | ||
| 1213 | + }, | ||
| 1214 | + { | ||
| 1215 | + "id": "C0082", | ||
| 1216 | + "activity_id": "A0007", | ||
| 1217 | + "user_id": "U0033", | ||
| 1218 | + "registration_id": "R0123", | ||
| 1219 | + "checkin_time": "2025-04-03 05:06:33", | ||
| 1220 | + "checkin_type": "QR code", | ||
| 1221 | + "location": { | ||
| 1222 | + "name": "熊猫书房", | ||
| 1223 | + "coordinates": "27.330438,106.622710" | ||
| 1224 | + }, | ||
| 1225 | + "staff_id": null, | ||
| 1226 | + "status": "successful", | ||
| 1227 | + "notes": "", | ||
| 1228 | + "is_late": false | ||
| 1229 | + }, | ||
| 1230 | + { | ||
| 1231 | + "id": "C0083", | ||
| 1232 | + "activity_id": "A0007", | ||
| 1233 | + "user_id": "U0028", | ||
| 1234 | + "registration_id": "R0124", | ||
| 1235 | + "checkin_time": "2025-04-03 05:06:45", | ||
| 1236 | + "checkin_type": "QR code", | ||
| 1237 | + "location": { | ||
| 1238 | + "name": "熊猫书房", | ||
| 1239 | + "coordinates": "22.012082,114.991471" | ||
| 1240 | + }, | ||
| 1241 | + "staff_id": null, | ||
| 1242 | + "status": "successful", | ||
| 1243 | + "notes": "", | ||
| 1244 | + "is_late": false | ||
| 1245 | + }, | ||
| 1246 | + { | ||
| 1247 | + "id": "C0084", | ||
| 1248 | + "activity_id": "A0007", | ||
| 1249 | + "user_id": "U0035", | ||
| 1250 | + "registration_id": "R0125", | ||
| 1251 | + "checkin_time": "2025-04-03 05:24:04", | ||
| 1252 | + "checkin_type": "QR code", | ||
| 1253 | + "location": { | ||
| 1254 | + "name": "熊猫书房", | ||
| 1255 | + "coordinates": "36.148959,100.254513" | ||
| 1256 | + }, | ||
| 1257 | + "staff_id": null, | ||
| 1258 | + "status": "successful", | ||
| 1259 | + "notes": "提前到达", | ||
| 1260 | + "is_late": false | ||
| 1261 | + }, | ||
| 1262 | + { | ||
| 1263 | + "id": "C0085", | ||
| 1264 | + "activity_id": "A0007", | ||
| 1265 | + "user_id": "U0032", | ||
| 1266 | + "registration_id": "R0127", | ||
| 1267 | + "checkin_time": "2025-04-03 05:25:34", | ||
| 1268 | + "checkin_type": "QR code", | ||
| 1269 | + "location": { | ||
| 1270 | + "name": "熊猫书房", | ||
| 1271 | + "coordinates": "26.064327,114.415219" | ||
| 1272 | + }, | ||
| 1273 | + "staff_id": null, | ||
| 1274 | + "status": "successful", | ||
| 1275 | + "notes": "", | ||
| 1276 | + "is_late": false | ||
| 1277 | + }, | ||
| 1278 | + { | ||
| 1279 | + "id": "C0086", | ||
| 1280 | + "activity_id": "A0007", | ||
| 1281 | + "user_id": "U0021", | ||
| 1282 | + "registration_id": "R0129", | ||
| 1283 | + "checkin_time": "2025-04-03 05:39:03", | ||
| 1284 | + "checkin_type": "manual", | ||
| 1285 | + "location": { | ||
| 1286 | + "name": "熊猫书房", | ||
| 1287 | + "coordinates": "32.406524,103.926679" | ||
| 1288 | + }, | ||
| 1289 | + "staff_id": "O0006", | ||
| 1290 | + "status": "successful", | ||
| 1291 | + "notes": "", | ||
| 1292 | + "is_late": false | ||
| 1293 | + }, | ||
| 1294 | + { | ||
| 1295 | + "id": "C0087", | ||
| 1296 | + "activity_id": "A0007", | ||
| 1297 | + "user_id": "U0002", | ||
| 1298 | + "registration_id": "R0130", | ||
| 1299 | + "checkin_time": "2025-04-03 05:16:57", | ||
| 1300 | + "checkin_type": "self-service", | ||
| 1301 | + "location": { | ||
| 1302 | + "name": "熊猫书房", | ||
| 1303 | + "coordinates": "34.129245,115.222974" | ||
| 1304 | + }, | ||
| 1305 | + "staff_id": null, | ||
| 1306 | + "status": "successful", | ||
| 1307 | + "notes": "带了书本", | ||
| 1308 | + "is_late": false | ||
| 1309 | + }, | ||
| 1310 | + { | ||
| 1311 | + "id": "C0088", | ||
| 1312 | + "activity_id": "A0007", | ||
| 1313 | + "user_id": "U0003", | ||
| 1314 | + "registration_id": "R0131", | ||
| 1315 | + "checkin_time": "2025-04-03 05:15:34", | ||
| 1316 | + "checkin_type": "QR code", | ||
| 1317 | + "location": { | ||
| 1318 | + "name": "熊猫书房", | ||
| 1319 | + "coordinates": "22.591087,120.597131" | ||
| 1320 | + }, | ||
| 1321 | + "staff_id": null, | ||
| 1322 | + "status": "successful", | ||
| 1323 | + "notes": "", | ||
| 1324 | + "is_late": false | ||
| 1325 | + }, | ||
| 1326 | + { | ||
| 1327 | + "id": "C0089", | ||
| 1328 | + "activity_id": "A0007", | ||
| 1329 | + "user_id": "U0019", | ||
| 1330 | + "registration_id": "R0132", | ||
| 1331 | + "checkin_time": "2025-04-03 05:50:38", | ||
| 1332 | + "checkin_type": "QR code", | ||
| 1333 | + "location": { | ||
| 1334 | + "name": "熊猫书房", | ||
| 1335 | + "coordinates": "36.712114,101.658613" | ||
| 1336 | + }, | ||
| 1337 | + "staff_id": null, | ||
| 1338 | + "status": "successful", | ||
| 1339 | + "notes": "", | ||
| 1340 | + "is_late": true | ||
| 1341 | + }, | ||
| 1342 | + { | ||
| 1343 | + "id": "C0090", | ||
| 1344 | + "activity_id": "A0008", | ||
| 1345 | + "user_id": "U0003", | ||
| 1346 | + "registration_id": "R0135", | ||
| 1347 | + "checkin_time": "2025-04-16 05:25:35", | ||
| 1348 | + "checkin_type": "self-service", | ||
| 1349 | + "location": { | ||
| 1350 | + "name": "紫金读书会", | ||
| 1351 | + "coordinates": "33.547392,111.581963" | ||
| 1352 | + }, | ||
| 1353 | + "staff_id": null, | ||
| 1354 | + "status": "successful", | ||
| 1355 | + "notes": "", | ||
| 1356 | + "is_late": false | ||
| 1357 | + }, | ||
| 1358 | + { | ||
| 1359 | + "id": "C0091", | ||
| 1360 | + "activity_id": "A0008", | ||
| 1361 | + "user_id": "U0031", | ||
| 1362 | + "registration_id": "R0136", | ||
| 1363 | + "checkin_time": "2025-04-16 05:32:36", | ||
| 1364 | + "checkin_type": "QR code", | ||
| 1365 | + "location": { | ||
| 1366 | + "name": "紫金读书会", | ||
| 1367 | + "coordinates": "26.534463,122.247619" | ||
| 1368 | + }, | ||
| 1369 | + "staff_id": null, | ||
| 1370 | + "status": "successful", | ||
| 1371 | + "notes": "带了书本", | ||
| 1372 | + "is_late": false | ||
| 1373 | + }, | ||
| 1374 | + { | ||
| 1375 | + "id": "C0092", | ||
| 1376 | + "activity_id": "A0008", | ||
| 1377 | + "user_id": "U0025", | ||
| 1378 | + "registration_id": "R0137", | ||
| 1379 | + "checkin_time": "2025-04-16 05:30:42", | ||
| 1380 | + "checkin_type": "QR code", | ||
| 1381 | + "location": { | ||
| 1382 | + "name": "紫金读书会", | ||
| 1383 | + "coordinates": "37.697400,124.784329" | ||
| 1384 | + }, | ||
| 1385 | + "staff_id": null, | ||
| 1386 | + "status": "successful", | ||
| 1387 | + "notes": "", | ||
| 1388 | + "is_late": false | ||
| 1389 | + }, | ||
| 1390 | + { | ||
| 1391 | + "id": "C0093", | ||
| 1392 | + "activity_id": "A0008", | ||
| 1393 | + "user_id": "U0010", | ||
| 1394 | + "registration_id": "R0139", | ||
| 1395 | + "checkin_time": "2025-04-16 05:52:05", | ||
| 1396 | + "checkin_type": "QR code", | ||
| 1397 | + "location": { | ||
| 1398 | + "name": "紫金读书会", | ||
| 1399 | + "coordinates": "37.840360,125.457487" | ||
| 1400 | + }, | ||
| 1401 | + "staff_id": null, | ||
| 1402 | + "status": "successful", | ||
| 1403 | + "notes": "", | ||
| 1404 | + "is_late": false | ||
| 1405 | + }, | ||
| 1406 | + { | ||
| 1407 | + "id": "C0094", | ||
| 1408 | + "activity_id": "A0008", | ||
| 1409 | + "user_id": "U0033", | ||
| 1410 | + "registration_id": "R0140", | ||
| 1411 | + "checkin_time": "2025-04-16 05:57:41", | ||
| 1412 | + "checkin_type": "self-service", | ||
| 1413 | + "location": { | ||
| 1414 | + "name": "紫金读书会", | ||
| 1415 | + "coordinates": "26.522240,113.936005" | ||
| 1416 | + }, | ||
| 1417 | + "staff_id": null, | ||
| 1418 | + "status": "successful", | ||
| 1419 | + "notes": "", | ||
| 1420 | + "is_late": false | ||
| 1421 | + }, | ||
| 1422 | + { | ||
| 1423 | + "id": "C0095", | ||
| 1424 | + "activity_id": "A0008", | ||
| 1425 | + "user_id": "U0038", | ||
| 1426 | + "registration_id": "R0143", | ||
| 1427 | + "checkin_time": "2025-04-16 05:34:49", | ||
| 1428 | + "checkin_type": "QR code", | ||
| 1429 | + "location": { | ||
| 1430 | + "name": "紫金读书会", | ||
| 1431 | + "coordinates": "32.237890,101.465566" | ||
| 1432 | + }, | ||
| 1433 | + "staff_id": null, | ||
| 1434 | + "status": "successful", | ||
| 1435 | + "notes": "", | ||
| 1436 | + "is_late": false | ||
| 1437 | + }, | ||
| 1438 | + { | ||
| 1439 | + "id": "C0096", | ||
| 1440 | + "activity_id": "A0008", | ||
| 1441 | + "user_id": "U0027", | ||
| 1442 | + "registration_id": "R0145", | ||
| 1443 | + "checkin_time": "2025-04-16 05:32:21", | ||
| 1444 | + "checkin_type": "QR code", | ||
| 1445 | + "location": { | ||
| 1446 | + "name": "紫金读书会", | ||
| 1447 | + "coordinates": "26.943107,117.949832" | ||
| 1448 | + }, | ||
| 1449 | + "staff_id": null, | ||
| 1450 | + "status": "successful", | ||
| 1451 | + "notes": "提前到达", | ||
| 1452 | + "is_late": true | ||
| 1453 | + }, | ||
| 1454 | + { | ||
| 1455 | + "id": "C0097", | ||
| 1456 | + "activity_id": "A0008", | ||
| 1457 | + "user_id": "U0030", | ||
| 1458 | + "registration_id": "R0146", | ||
| 1459 | + "checkin_time": "2025-04-16 05:24:26", | ||
| 1460 | + "checkin_type": "QR code", | ||
| 1461 | + "location": { | ||
| 1462 | + "name": "紫金读书会", | ||
| 1463 | + "coordinates": "26.658257,117.440716" | ||
| 1464 | + }, | ||
| 1465 | + "staff_id": null, | ||
| 1466 | + "status": "successful", | ||
| 1467 | + "notes": "", | ||
| 1468 | + "is_late": false | ||
| 1469 | + }, | ||
| 1470 | + { | ||
| 1471 | + "id": "C0098", | ||
| 1472 | + "activity_id": "A0008", | ||
| 1473 | + "user_id": "U0021", | ||
| 1474 | + "registration_id": "R0148", | ||
| 1475 | + "checkin_time": "2025-04-16 05:41:35", | ||
| 1476 | + "checkin_type": "QR code", | ||
| 1477 | + "location": { | ||
| 1478 | + "name": "紫金读书会", | ||
| 1479 | + "coordinates": "28.532310,111.835896" | ||
| 1480 | + }, | ||
| 1481 | + "staff_id": null, | ||
| 1482 | + "status": "successful", | ||
| 1483 | + "notes": "", | ||
| 1484 | + "is_late": true | ||
| 1485 | + }, | ||
| 1486 | + { | ||
| 1487 | + "id": "C0099", | ||
| 1488 | + "activity_id": "A0008", | ||
| 1489 | + "user_id": "U0004", | ||
| 1490 | + "registration_id": "R0149", | ||
| 1491 | + "checkin_time": "2025-04-16 05:16:49", | ||
| 1492 | + "checkin_type": "QR code", | ||
| 1493 | + "location": { | ||
| 1494 | + "name": "紫金读书会", | ||
| 1495 | + "coordinates": "24.072484,125.678064" | ||
| 1496 | + }, | ||
| 1497 | + "staff_id": null, | ||
| 1498 | + "status": "successful", | ||
| 1499 | + "notes": "", | ||
| 1500 | + "is_late": false | ||
| 1501 | + }, | ||
| 1502 | + { | ||
| 1503 | + "id": "C0100", | ||
| 1504 | + "activity_id": "A0012", | ||
| 1505 | + "user_id": "U0026", | ||
| 1506 | + "registration_id": "R0178", | ||
| 1507 | + "checkin_time": "2025-04-04 05:04:24", | ||
| 1508 | + "checkin_type": "QR code", | ||
| 1509 | + "location": null, | ||
| 1510 | + "staff_id": null, | ||
| 1511 | + "status": "successful", | ||
| 1512 | + "notes": "", | ||
| 1513 | + "is_late": false | ||
| 1514 | + }, | ||
| 1515 | + { | ||
| 1516 | + "id": "C0101", | ||
| 1517 | + "activity_id": "A0012", | ||
| 1518 | + "user_id": "U0009", | ||
| 1519 | + "registration_id": "R0181", | ||
| 1520 | + "checkin_time": "2025-04-04 05:09:34", | ||
| 1521 | + "checkin_type": "QR code", | ||
| 1522 | + "location": null, | ||
| 1523 | + "staff_id": null, | ||
| 1524 | + "status": "successful", | ||
| 1525 | + "notes": "", | ||
| 1526 | + "is_late": false | ||
| 1527 | + }, | ||
| 1528 | + { | ||
| 1529 | + "id": "C0102", | ||
| 1530 | + "activity_id": "A0012", | ||
| 1531 | + "user_id": "U0025", | ||
| 1532 | + "registration_id": "R0182", | ||
| 1533 | + "checkin_time": "2025-04-04 05:25:45", | ||
| 1534 | + "checkin_type": "self-service", | ||
| 1535 | + "location": null, | ||
| 1536 | + "staff_id": null, | ||
| 1537 | + "status": "successful", | ||
| 1538 | + "notes": "", | ||
| 1539 | + "is_late": true | ||
| 1540 | + }, | ||
| 1541 | + { | ||
| 1542 | + "id": "C0103", | ||
| 1543 | + "activity_id": "A0012", | ||
| 1544 | + "user_id": "U0002", | ||
| 1545 | + "registration_id": "R0183", | ||
| 1546 | + "checkin_time": "2025-04-04 05:27:11", | ||
| 1547 | + "checkin_type": "QR code", | ||
| 1548 | + "location": null, | ||
| 1549 | + "staff_id": null, | ||
| 1550 | + "status": "successful", | ||
| 1551 | + "notes": "", | ||
| 1552 | + "is_late": false | ||
| 1553 | + }, | ||
| 1554 | + { | ||
| 1555 | + "id": "C0104", | ||
| 1556 | + "activity_id": "A0012", | ||
| 1557 | + "user_id": "U0031", | ||
| 1558 | + "registration_id": "R0184", | ||
| 1559 | + "checkin_time": "2025-04-04 05:31:22", | ||
| 1560 | + "checkin_type": "manual", | ||
| 1561 | + "location": null, | ||
| 1562 | + "staff_id": "O0001", | ||
| 1563 | + "status": "successful", | ||
| 1564 | + "notes": "", | ||
| 1565 | + "is_late": false | ||
| 1566 | + }, | ||
| 1567 | + { | ||
| 1568 | + "id": "C0105", | ||
| 1569 | + "activity_id": "A0012", | ||
| 1570 | + "user_id": "U0015", | ||
| 1571 | + "registration_id": "R0185", | ||
| 1572 | + "checkin_time": "2025-04-04 05:36:53", | ||
| 1573 | + "checkin_type": "QR code", | ||
| 1574 | + "location": null, | ||
| 1575 | + "staff_id": null, | ||
| 1576 | + "status": "successful", | ||
| 1577 | + "notes": "带了书本", | ||
| 1578 | + "is_late": false | ||
| 1579 | + }, | ||
| 1580 | + { | ||
| 1581 | + "id": "C0106", | ||
| 1582 | + "activity_id": "A0012", | ||
| 1583 | + "user_id": "U0039", | ||
| 1584 | + "registration_id": "R0187", | ||
| 1585 | + "checkin_time": "2025-04-04 05:48:01", | ||
| 1586 | + "checkin_type": "QR code", | ||
| 1587 | + "location": null, | ||
| 1588 | + "staff_id": null, | ||
| 1589 | + "status": "successful", | ||
| 1590 | + "notes": "", | ||
| 1591 | + "is_late": true | ||
| 1592 | + }, | ||
| 1593 | + { | ||
| 1594 | + "id": "C0107", | ||
| 1595 | + "activity_id": "A0012", | ||
| 1596 | + "user_id": "U0006", | ||
| 1597 | + "registration_id": "R0188", | ||
| 1598 | + "checkin_time": "2025-04-04 05:18:54", | ||
| 1599 | + "checkin_type": "QR code", | ||
| 1600 | + "location": null, | ||
| 1601 | + "staff_id": null, | ||
| 1602 | + "status": "successful", | ||
| 1603 | + "notes": "带了书本", | ||
| 1604 | + "is_late": false | ||
| 1605 | + }, | ||
| 1606 | + { | ||
| 1607 | + "id": "C0108", | ||
| 1608 | + "activity_id": "A0012", | ||
| 1609 | + "user_id": "U0020", | ||
| 1610 | + "registration_id": "R0189", | ||
| 1611 | + "checkin_time": "2025-04-04 05:55:49", | ||
| 1612 | + "checkin_type": "QR code", | ||
| 1613 | + "location": null, | ||
| 1614 | + "staff_id": null, | ||
| 1615 | + "status": "successful", | ||
| 1616 | + "notes": "准备充分", | ||
| 1617 | + "is_late": true | ||
| 1618 | + }, | ||
| 1619 | + { | ||
| 1620 | + "id": "C0109", | ||
| 1621 | + "activity_id": "A0012", | ||
| 1622 | + "user_id": "U0034", | ||
| 1623 | + "registration_id": "R0190", | ||
| 1624 | + "checkin_time": "2025-04-04 05:08:51", | ||
| 1625 | + "checkin_type": "QR code", | ||
| 1626 | + "location": null, | ||
| 1627 | + "staff_id": null, | ||
| 1628 | + "status": "successful", | ||
| 1629 | + "notes": "提前到达", | ||
| 1630 | + "is_late": false | ||
| 1631 | + }, | ||
| 1632 | + { | ||
| 1633 | + "id": "C0110", | ||
| 1634 | + "activity_id": "A0012", | ||
| 1635 | + "user_id": "U0010", | ||
| 1636 | + "registration_id": "R0191", | ||
| 1637 | + "checkin_time": "2025-04-04 05:48:49", | ||
| 1638 | + "checkin_type": "QR code", | ||
| 1639 | + "location": null, | ||
| 1640 | + "staff_id": null, | ||
| 1641 | + "status": "successful", | ||
| 1642 | + "notes": "", | ||
| 1643 | + "is_late": true | ||
| 1644 | + }, | ||
| 1645 | + { | ||
| 1646 | + "id": "C0111", | ||
| 1647 | + "activity_id": "A0012", | ||
| 1648 | + "user_id": "U0005", | ||
| 1649 | + "registration_id": "R0192", | ||
| 1650 | + "checkin_time": "2025-04-04 05:09:19", | ||
| 1651 | + "checkin_type": "QR code", | ||
| 1652 | + "location": null, | ||
| 1653 | + "staff_id": null, | ||
| 1654 | + "status": "successful", | ||
| 1655 | + "notes": "准备充分", | ||
| 1656 | + "is_late": false | ||
| 1657 | + }, | ||
| 1658 | + { | ||
| 1659 | + "id": "C0112", | ||
| 1660 | + "activity_id": "A0012", | ||
| 1661 | + "user_id": "U0032", | ||
| 1662 | + "registration_id": "R0193", | ||
| 1663 | + "checkin_time": "2025-04-04 05:00:54", | ||
| 1664 | + "checkin_type": "QR code", | ||
| 1665 | + "location": null, | ||
| 1666 | + "staff_id": null, | ||
| 1667 | + "status": "successful", | ||
| 1668 | + "notes": "", | ||
| 1669 | + "is_late": false | ||
| 1670 | + }, | ||
| 1671 | + { | ||
| 1672 | + "id": "C0113", | ||
| 1673 | + "activity_id": "A0012", | ||
| 1674 | + "user_id": "U0012", | ||
| 1675 | + "registration_id": "R0194", | ||
| 1676 | + "checkin_time": "2025-04-04 05:44:20", | ||
| 1677 | + "checkin_type": "QR code", | ||
| 1678 | + "location": null, | ||
| 1679 | + "staff_id": null, | ||
| 1680 | + "status": "successful", | ||
| 1681 | + "notes": "", | ||
| 1682 | + "is_late": true | ||
| 1683 | + }, | ||
| 1684 | + { | ||
| 1685 | + "id": "C0114", | ||
| 1686 | + "activity_id": "A0012", | ||
| 1687 | + "user_id": "U0023", | ||
| 1688 | + "registration_id": "R0195", | ||
| 1689 | + "checkin_time": "2025-04-04 05:24:39", | ||
| 1690 | + "checkin_type": "QR code", | ||
| 1691 | + "location": null, | ||
| 1692 | + "staff_id": null, | ||
| 1693 | + "status": "successful", | ||
| 1694 | + "notes": "", | ||
| 1695 | + "is_late": false | ||
| 1696 | + }, | ||
| 1697 | + { | ||
| 1698 | + "id": "C0115", | ||
| 1699 | + "activity_id": "A0012", | ||
| 1700 | + "user_id": "U0021", | ||
| 1701 | + "registration_id": "R0196", | ||
| 1702 | + "checkin_time": "2025-04-04 05:00:48", | ||
| 1703 | + "checkin_type": "QR code", | ||
| 1704 | + "location": null, | ||
| 1705 | + "staff_id": null, | ||
| 1706 | + "status": "successful", | ||
| 1707 | + "notes": "", | ||
| 1708 | + "is_late": false | ||
| 1709 | + }, | ||
| 1710 | + { | ||
| 1711 | + "id": "C0116", | ||
| 1712 | + "activity_id": "A0012", | ||
| 1713 | + "user_id": "U0004", | ||
| 1714 | + "registration_id": "R0199", | ||
| 1715 | + "checkin_time": "2025-04-04 05:47:11", | ||
| 1716 | + "checkin_type": "manual", | ||
| 1717 | + "location": null, | ||
| 1718 | + "staff_id": "O0001", | ||
| 1719 | + "status": "successful", | ||
| 1720 | + "notes": "", | ||
| 1721 | + "is_late": true | ||
| 1722 | + }, | ||
| 1723 | + { | ||
| 1724 | + "id": "C0117", | ||
| 1725 | + "activity_id": "A0012", | ||
| 1726 | + "user_id": "U0033", | ||
| 1727 | + "registration_id": "R0200", | ||
| 1728 | + "checkin_time": "2025-04-04 05:26:28", | ||
| 1729 | + "checkin_type": "manual", | ||
| 1730 | + "location": null, | ||
| 1731 | + "staff_id": "O0001", | ||
| 1732 | + "status": "successful", | ||
| 1733 | + "notes": "准备充分", | ||
| 1734 | + "is_late": false | ||
| 1735 | + }, | ||
| 1736 | + { | ||
| 1737 | + "id": "C0118", | ||
| 1738 | + "activity_id": "A0012", | ||
| 1739 | + "user_id": "U0018", | ||
| 1740 | + "registration_id": "R0201", | ||
| 1741 | + "checkin_time": "2025-04-04 05:27:24", | ||
| 1742 | + "checkin_type": "QR code", | ||
| 1743 | + "location": null, | ||
| 1744 | + "staff_id": null, | ||
| 1745 | + "status": "successful", | ||
| 1746 | + "notes": "", | ||
| 1747 | + "is_late": false | ||
| 1748 | + }, | ||
| 1749 | + { | ||
| 1750 | + "id": "C0119", | ||
| 1751 | + "activity_id": "A0012", | ||
| 1752 | + "user_id": "U0017", | ||
| 1753 | + "registration_id": "R0202", | ||
| 1754 | + "checkin_time": "2025-04-04 05:15:29", | ||
| 1755 | + "checkin_type": "QR code", | ||
| 1756 | + "location": null, | ||
| 1757 | + "staff_id": null, | ||
| 1758 | + "status": "successful", | ||
| 1759 | + "notes": "", | ||
| 1760 | + "is_late": false | ||
| 1761 | + }, | ||
| 1762 | + { | ||
| 1763 | + "id": "C0120", | ||
| 1764 | + "activity_id": "A0012", | ||
| 1765 | + "user_id": "U0030", | ||
| 1766 | + "registration_id": "R0203", | ||
| 1767 | + "checkin_time": "2025-04-04 06:00:53", | ||
| 1768 | + "checkin_type": "manual", | ||
| 1769 | + "location": null, | ||
| 1770 | + "staff_id": "O0001", | ||
| 1771 | + "status": "successful", | ||
| 1772 | + "notes": "", | ||
| 1773 | + "is_late": true | ||
| 1774 | + }, | ||
| 1775 | + { | ||
| 1776 | + "id": "C0121", | ||
| 1777 | + "activity_id": "A0012", | ||
| 1778 | + "user_id": "U0040", | ||
| 1779 | + "registration_id": "R0204", | ||
| 1780 | + "checkin_time": "2025-04-04 05:39:19", | ||
| 1781 | + "checkin_type": "self-service", | ||
| 1782 | + "location": null, | ||
| 1783 | + "staff_id": null, | ||
| 1784 | + "status": "successful", | ||
| 1785 | + "notes": "", | ||
| 1786 | + "is_late": false | ||
| 1787 | + }, | ||
| 1788 | + { | ||
| 1789 | + "id": "C0122", | ||
| 1790 | + "activity_id": "A0012", | ||
| 1791 | + "user_id": "U0035", | ||
| 1792 | + "registration_id": "R0205", | ||
| 1793 | + "checkin_time": "2025-04-04 04:59:03", | ||
| 1794 | + "checkin_type": "manual", | ||
| 1795 | + "location": null, | ||
| 1796 | + "staff_id": "O0001", | ||
| 1797 | + "status": "successful", | ||
| 1798 | + "notes": "", | ||
| 1799 | + "is_late": false | ||
| 1800 | + }, | ||
| 1801 | + { | ||
| 1802 | + "id": "C0123", | ||
| 1803 | + "activity_id": "A0012", | ||
| 1804 | + "user_id": "U0008", | ||
| 1805 | + "registration_id": "R0206", | ||
| 1806 | + "checkin_time": "2025-04-04 05:18:37", | ||
| 1807 | + "checkin_type": "QR code", | ||
| 1808 | + "location": null, | ||
| 1809 | + "staff_id": null, | ||
| 1810 | + "status": "successful", | ||
| 1811 | + "notes": "", | ||
| 1812 | + "is_late": false | ||
| 1813 | + }, | ||
| 1814 | + { | ||
| 1815 | + "id": "C0124", | ||
| 1816 | + "activity_id": "A0012", | ||
| 1817 | + "user_id": "U0029", | ||
| 1818 | + "registration_id": "R0207", | ||
| 1819 | + "checkin_time": "2025-04-04 05:05:57", | ||
| 1820 | + "checkin_type": "manual", | ||
| 1821 | + "location": null, | ||
| 1822 | + "staff_id": "O0001", | ||
| 1823 | + "status": "successful", | ||
| 1824 | + "notes": "", | ||
| 1825 | + "is_late": false | ||
| 1826 | + }, | ||
| 1827 | + { | ||
| 1828 | + "id": "C0125", | ||
| 1829 | + "activity_id": "A0012", | ||
| 1830 | + "user_id": "U0028", | ||
| 1831 | + "registration_id": "R0208", | ||
| 1832 | + "checkin_time": "2025-04-04 05:12:11", | ||
| 1833 | + "checkin_type": "manual", | ||
| 1834 | + "location": null, | ||
| 1835 | + "staff_id": "O0001", | ||
| 1836 | + "status": "successful", | ||
| 1837 | + "notes": "", | ||
| 1838 | + "is_late": false | ||
| 1839 | + }, | ||
| 1840 | + { | ||
| 1841 | + "id": "C0126", | ||
| 1842 | + "activity_id": "A0012", | ||
| 1843 | + "user_id": "U0027", | ||
| 1844 | + "registration_id": "R0209", | ||
| 1845 | + "checkin_time": "2025-04-04 05:25:32", | ||
| 1846 | + "checkin_type": "QR code", | ||
| 1847 | + "location": null, | ||
| 1848 | + "staff_id": null, | ||
| 1849 | + "status": "successful", | ||
| 1850 | + "notes": "带了书本", | ||
| 1851 | + "is_late": true | ||
| 1852 | + }, | ||
| 1853 | + { | ||
| 1854 | + "id": "C0127", | ||
| 1855 | + "activity_id": "A0012", | ||
| 1856 | + "user_id": "U0022", | ||
| 1857 | + "registration_id": "R0211", | ||
| 1858 | + "checkin_time": "2025-04-04 05:37:40", | ||
| 1859 | + "checkin_type": "QR code", | ||
| 1860 | + "location": null, | ||
| 1861 | + "staff_id": null, | ||
| 1862 | + "status": "successful", | ||
| 1863 | + "notes": "热情参与讨论", | ||
| 1864 | + "is_late": true | ||
| 1865 | + }, | ||
| 1866 | + { | ||
| 1867 | + "id": "C0128", | ||
| 1868 | + "activity_id": "A0012", | ||
| 1869 | + "user_id": "U0016", | ||
| 1870 | + "registration_id": "R0213", | ||
| 1871 | + "checkin_time": "2025-04-04 05:02:22", | ||
| 1872 | + "checkin_type": "self-service", | ||
| 1873 | + "location": null, | ||
| 1874 | + "staff_id": null, | ||
| 1875 | + "status": "successful", | ||
| 1876 | + "notes": "热情参与讨论", | ||
| 1877 | + "is_late": false | ||
| 1878 | + }, | ||
| 1879 | + { | ||
| 1880 | + "id": "C0129", | ||
| 1881 | + "activity_id": "A0012", | ||
| 1882 | + "user_id": "U0011", | ||
| 1883 | + "registration_id": "R0214", | ||
| 1884 | + "checkin_time": "2025-04-04 05:29:01", | ||
| 1885 | + "checkin_type": "self-service", | ||
| 1886 | + "location": null, | ||
| 1887 | + "staff_id": null, | ||
| 1888 | + "status": "successful", | ||
| 1889 | + "notes": "按时到达", | ||
| 1890 | + "is_late": false | ||
| 1891 | + }, | ||
| 1892 | + { | ||
| 1893 | + "id": "C0130", | ||
| 1894 | + "activity_id": "A0012", | ||
| 1895 | + "user_id": "U0036", | ||
| 1896 | + "registration_id": "R0215", | ||
| 1897 | + "checkin_time": "2025-04-04 05:42:57", | ||
| 1898 | + "checkin_type": "QR code", | ||
| 1899 | + "location": null, | ||
| 1900 | + "staff_id": null, | ||
| 1901 | + "status": "successful", | ||
| 1902 | + "notes": "", | ||
| 1903 | + "is_late": false | ||
| 1904 | + }, | ||
| 1905 | + { | ||
| 1906 | + "id": "C0131", | ||
| 1907 | + "activity_id": "A0012", | ||
| 1908 | + "user_id": "U0019", | ||
| 1909 | + "registration_id": "R0216", | ||
| 1910 | + "checkin_time": "2025-04-04 05:12:01", | ||
| 1911 | + "checkin_type": "QR code", | ||
| 1912 | + "location": null, | ||
| 1913 | + "staff_id": null, | ||
| 1914 | + "status": "successful", | ||
| 1915 | + "notes": "", | ||
| 1916 | + "is_late": false | ||
| 1917 | + }, | ||
| 1918 | + { | ||
| 1919 | + "id": "C0132", | ||
| 1920 | + "activity_id": "A0012", | ||
| 1921 | + "user_id": "U0037", | ||
| 1922 | + "registration_id": "R0217", | ||
| 1923 | + "checkin_time": "2025-04-04 05:43:15", | ||
| 1924 | + "checkin_type": "QR code", | ||
| 1925 | + "location": null, | ||
| 1926 | + "staff_id": null, | ||
| 1927 | + "status": "successful", | ||
| 1928 | + "notes": "准备充分", | ||
| 1929 | + "is_late": false | ||
| 1930 | + }, | ||
| 1931 | + { | ||
| 1932 | + "id": "C0133", | ||
| 1933 | + "activity_id": "A0013", | ||
| 1934 | + "user_id": "U0021", | ||
| 1935 | + "registration_id": "R0219", | ||
| 1936 | + "checkin_time": "2025-04-16 06:30:48", | ||
| 1937 | + "checkin_type": "QR code", | ||
| 1938 | + "location": { | ||
| 1939 | + "name": "深蓝咖啡馆", | ||
| 1940 | + "coordinates": "31.314481,112.706910" | ||
| 1941 | + }, | ||
| 1942 | + "staff_id": null, | ||
| 1943 | + "status": "successful", | ||
| 1944 | + "notes": "", | ||
| 1945 | + "is_late": false | ||
| 1946 | + }, | ||
| 1947 | + { | ||
| 1948 | + "id": "C0134", | ||
| 1949 | + "activity_id": "A0013", | ||
| 1950 | + "user_id": "U0034", | ||
| 1951 | + "registration_id": "R0220", | ||
| 1952 | + "checkin_time": "2025-04-16 06:28:10", | ||
| 1953 | + "checkin_type": "QR code", | ||
| 1954 | + "location": { | ||
| 1955 | + "name": "深蓝咖啡馆", | ||
| 1956 | + "coordinates": "27.233821,118.026442" | ||
| 1957 | + }, | ||
| 1958 | + "staff_id": null, | ||
| 1959 | + "status": "successful", | ||
| 1960 | + "notes": "", | ||
| 1961 | + "is_late": false | ||
| 1962 | + }, | ||
| 1963 | + { | ||
| 1964 | + "id": "C0135", | ||
| 1965 | + "activity_id": "A0013", | ||
| 1966 | + "user_id": "U0024", | ||
| 1967 | + "registration_id": "R0222", | ||
| 1968 | + "checkin_time": "2025-04-16 06:19:07", | ||
| 1969 | + "checkin_type": "QR code", | ||
| 1970 | + "location": { | ||
| 1971 | + "name": "深蓝咖啡馆", | ||
| 1972 | + "coordinates": "26.304584,117.374957" | ||
| 1973 | + }, | ||
| 1974 | + "staff_id": null, | ||
| 1975 | + "status": "successful", | ||
| 1976 | + "notes": "", | ||
| 1977 | + "is_late": false | ||
| 1978 | + }, | ||
| 1979 | + { | ||
| 1980 | + "id": "C0136", | ||
| 1981 | + "activity_id": "A0013", | ||
| 1982 | + "user_id": "U0006", | ||
| 1983 | + "registration_id": "R0226", | ||
| 1984 | + "checkin_time": "2025-04-16 06:47:15", | ||
| 1985 | + "checkin_type": "QR code", | ||
| 1986 | + "location": { | ||
| 1987 | + "name": "深蓝咖啡馆", | ||
| 1988 | + "coordinates": "26.656372,107.313507" | ||
| 1989 | + }, | ||
| 1990 | + "staff_id": null, | ||
| 1991 | + "status": "successful", | ||
| 1992 | + "notes": "带了书本", | ||
| 1993 | + "is_late": true | ||
| 1994 | + }, | ||
| 1995 | + { | ||
| 1996 | + "id": "C0137", | ||
| 1997 | + "activity_id": "A0013", | ||
| 1998 | + "user_id": "U0016", | ||
| 1999 | + "registration_id": "R0228", | ||
| 2000 | + "checkin_time": "2025-04-16 06:02:25", | ||
| 2001 | + "checkin_type": "manual", | ||
| 2002 | + "location": { | ||
| 2003 | + "name": "深蓝咖啡馆", | ||
| 2004 | + "coordinates": "22.619492,111.165082" | ||
| 2005 | + }, | ||
| 2006 | + "staff_id": "O0003", | ||
| 2007 | + "status": "successful", | ||
| 2008 | + "notes": "带了书本", | ||
| 2009 | + "is_late": false | ||
| 2010 | + }, | ||
| 2011 | + { | ||
| 2012 | + "id": "C0138", | ||
| 2013 | + "activity_id": "A0013", | ||
| 2014 | + "user_id": "U0039", | ||
| 2015 | + "registration_id": "R0230", | ||
| 2016 | + "checkin_time": "2025-04-16 06:19:57", | ||
| 2017 | + "checkin_type": "QR code", | ||
| 2018 | + "location": { | ||
| 2019 | + "name": "深蓝咖啡馆", | ||
| 2020 | + "coordinates": "28.583453,100.061289" | ||
| 2021 | + }, | ||
| 2022 | + "staff_id": null, | ||
| 2023 | + "status": "successful", | ||
| 2024 | + "notes": "", | ||
| 2025 | + "is_late": false | ||
| 2026 | + }, | ||
| 2027 | + { | ||
| 2028 | + "id": "C0139", | ||
| 2029 | + "activity_id": "A0013", | ||
| 2030 | + "user_id": "U0033", | ||
| 2031 | + "registration_id": "R0231", | ||
| 2032 | + "checkin_time": "2025-04-16 05:48:13", | ||
| 2033 | + "checkin_type": "QR code", | ||
| 2034 | + "location": { | ||
| 2035 | + "name": "深蓝咖啡馆", | ||
| 2036 | + "coordinates": "39.928726,103.865093" | ||
| 2037 | + }, | ||
| 2038 | + "staff_id": null, | ||
| 2039 | + "status": "successful", | ||
| 2040 | + "notes": "", | ||
| 2041 | + "is_late": false | ||
| 2042 | + }, | ||
| 2043 | + { | ||
| 2044 | + "id": "C0140", | ||
| 2045 | + "activity_id": "A0013", | ||
| 2046 | + "user_id": "U0013", | ||
| 2047 | + "registration_id": "R0232", | ||
| 2048 | + "checkin_time": "2025-04-16 06:22:37", | ||
| 2049 | + "checkin_type": "manual", | ||
| 2050 | + "location": { | ||
| 2051 | + "name": "深蓝咖啡馆", | ||
| 2052 | + "coordinates": "30.206263,116.407620" | ||
| 2053 | + }, | ||
| 2054 | + "staff_id": "O0003", | ||
| 2055 | + "status": "successful", | ||
| 2056 | + "notes": "", | ||
| 2057 | + "is_late": false | ||
| 2058 | + }, | ||
| 2059 | + { | ||
| 2060 | + "id": "C0141", | ||
| 2061 | + "activity_id": "A0013", | ||
| 2062 | + "user_id": "U0017", | ||
| 2063 | + "registration_id": "R0237", | ||
| 2064 | + "checkin_time": "2025-04-16 05:51:41", | ||
| 2065 | + "checkin_type": "QR code", | ||
| 2066 | + "location": { | ||
| 2067 | + "name": "深蓝咖啡馆", | ||
| 2068 | + "coordinates": "26.353654,112.348033" | ||
| 2069 | + }, | ||
| 2070 | + "staff_id": null, | ||
| 2071 | + "status": "successful", | ||
| 2072 | + "notes": "", | ||
| 2073 | + "is_late": false | ||
| 2074 | + }, | ||
| 2075 | + { | ||
| 2076 | + "id": "C0142", | ||
| 2077 | + "activity_id": "A0013", | ||
| 2078 | + "user_id": "U0040", | ||
| 2079 | + "registration_id": "R0238", | ||
| 2080 | + "checkin_time": "2025-04-16 05:59:42", | ||
| 2081 | + "checkin_type": "manual", | ||
| 2082 | + "location": { | ||
| 2083 | + "name": "深蓝咖啡馆", | ||
| 2084 | + "coordinates": "29.536559,121.926857" | ||
| 2085 | + }, | ||
| 2086 | + "staff_id": "O0003", | ||
| 2087 | + "status": "successful", | ||
| 2088 | + "notes": "按时到达", | ||
| 2089 | + "is_late": false | ||
| 2090 | + }, | ||
| 2091 | + { | ||
| 2092 | + "id": "C0143", | ||
| 2093 | + "activity_id": "A0013", | ||
| 2094 | + "user_id": "U0028", | ||
| 2095 | + "registration_id": "R0239", | ||
| 2096 | + "checkin_time": "2025-04-16 06:03:43", | ||
| 2097 | + "checkin_type": "QR code", | ||
| 2098 | + "location": { | ||
| 2099 | + "name": "深蓝咖啡馆", | ||
| 2100 | + "coordinates": "38.445453,111.849643" | ||
| 2101 | + }, | ||
| 2102 | + "staff_id": null, | ||
| 2103 | + "status": "successful", | ||
| 2104 | + "notes": "热情参与讨论", | ||
| 2105 | + "is_late": false | ||
| 2106 | + }, | ||
| 2107 | + { | ||
| 2108 | + "id": "C0144", | ||
| 2109 | + "activity_id": "A0013", | ||
| 2110 | + "user_id": "U0015", | ||
| 2111 | + "registration_id": "R0240", | ||
| 2112 | + "checkin_time": "2025-04-16 06:15:58", | ||
| 2113 | + "checkin_type": "QR code", | ||
| 2114 | + "location": { | ||
| 2115 | + "name": "深蓝咖啡馆", | ||
| 2116 | + "coordinates": "38.987819,109.828606" | ||
| 2117 | + }, | ||
| 2118 | + "staff_id": null, | ||
| 2119 | + "status": "failed", | ||
| 2120 | + "notes": "网络连接不稳定", | ||
| 2121 | + "is_late": false | ||
| 2122 | + }, | ||
| 2123 | + { | ||
| 2124 | + "id": "C0145", | ||
| 2125 | + "activity_id": "A0013", | ||
| 2126 | + "user_id": "U0023", | ||
| 2127 | + "registration_id": "R0242", | ||
| 2128 | + "checkin_time": "2025-04-16 06:21:50", | ||
| 2129 | + "checkin_type": "manual", | ||
| 2130 | + "location": { | ||
| 2131 | + "name": "深蓝咖啡馆", | ||
| 2132 | + "coordinates": "38.259928,108.439322" | ||
| 2133 | + }, | ||
| 2134 | + "staff_id": "O0003", | ||
| 2135 | + "status": "successful", | ||
| 2136 | + "notes": "", | ||
| 2137 | + "is_late": false | ||
| 2138 | + }, | ||
| 2139 | + { | ||
| 2140 | + "id": "C0146", | ||
| 2141 | + "activity_id": "A0013", | ||
| 2142 | + "user_id": "U0012", | ||
| 2143 | + "registration_id": "R0243", | ||
| 2144 | + "checkin_time": "2025-04-16 06:22:16", | ||
| 2145 | + "checkin_type": "QR code", | ||
| 2146 | + "location": { | ||
| 2147 | + "name": "深蓝咖啡馆", | ||
| 2148 | + "coordinates": "30.354202,113.504246" | ||
| 2149 | + }, | ||
| 2150 | + "staff_id": null, | ||
| 2151 | + "status": "successful", | ||
| 2152 | + "notes": "准备充分", | ||
| 2153 | + "is_late": false | ||
| 2154 | + }, | ||
| 2155 | + { | ||
| 2156 | + "id": "C0147", | ||
| 2157 | + "activity_id": "A0013", | ||
| 2158 | + "user_id": "U0020", | ||
| 2159 | + "registration_id": "R0244", | ||
| 2160 | + "checkin_time": "2025-04-16 06:14:18", | ||
| 2161 | + "checkin_type": "QR code", | ||
| 2162 | + "location": { | ||
| 2163 | + "name": "深蓝咖啡馆", | ||
| 2164 | + "coordinates": "38.643924,120.520059" | ||
| 2165 | + }, | ||
| 2166 | + "staff_id": null, | ||
| 2167 | + "status": "successful", | ||
| 2168 | + "notes": "", | ||
| 2169 | + "is_late": false | ||
| 2170 | + }, | ||
| 2171 | + { | ||
| 2172 | + "id": "C0148", | ||
| 2173 | + "activity_id": "A0013", | ||
| 2174 | + "user_id": "U0022", | ||
| 2175 | + "registration_id": "R0246", | ||
| 2176 | + "checkin_time": "2025-04-16 06:03:06", | ||
| 2177 | + "checkin_type": "QR code", | ||
| 2178 | + "location": { | ||
| 2179 | + "name": "深蓝咖啡馆", | ||
| 2180 | + "coordinates": "31.559993,119.096261" | ||
| 2181 | + }, | ||
| 2182 | + "staff_id": null, | ||
| 2183 | + "status": "successful", | ||
| 2184 | + "notes": "", | ||
| 2185 | + "is_late": false | ||
| 2186 | + }, | ||
| 2187 | + { | ||
| 2188 | + "id": "C0149", | ||
| 2189 | + "activity_id": "A0013", | ||
| 2190 | + "user_id": "U0003", | ||
| 2191 | + "registration_id": "R0247", | ||
| 2192 | + "checkin_time": "2025-04-16 05:52:52", | ||
| 2193 | + "checkin_type": "self-service", | ||
| 2194 | + "location": { | ||
| 2195 | + "name": "深蓝咖啡馆", | ||
| 2196 | + "coordinates": "39.656725,112.033980" | ||
| 2197 | + }, | ||
| 2198 | + "staff_id": null, | ||
| 2199 | + "status": "successful", | ||
| 2200 | + "notes": "", | ||
| 2201 | + "is_late": false | ||
| 2202 | + }, | ||
| 2203 | + { | ||
| 2204 | + "id": "C0150", | ||
| 2205 | + "activity_id": "A0013", | ||
| 2206 | + "user_id": "U0001", | ||
| 2207 | + "registration_id": "R0249", | ||
| 2208 | + "checkin_time": "2025-04-16 05:53:42", | ||
| 2209 | + "checkin_type": "QR code", | ||
| 2210 | + "location": { | ||
| 2211 | + "name": "深蓝咖啡馆", | ||
| 2212 | + "coordinates": "35.419700,117.373079" | ||
| 2213 | + }, | ||
| 2214 | + "staff_id": null, | ||
| 2215 | + "status": "successful", | ||
| 2216 | + "notes": "", | ||
| 2217 | + "is_late": false | ||
| 2218 | + }, | ||
| 2219 | + { | ||
| 2220 | + "id": "C0151", | ||
| 2221 | + "activity_id": "A0013", | ||
| 2222 | + "user_id": "U0036", | ||
| 2223 | + "registration_id": "R0250", | ||
| 2224 | + "checkin_time": "2025-04-16 06:22:22", | ||
| 2225 | + "checkin_type": "self-service", | ||
| 2226 | + "location": { | ||
| 2227 | + "name": "深蓝咖啡馆", | ||
| 2228 | + "coordinates": "22.718087,103.176777" | ||
| 2229 | + }, | ||
| 2230 | + "staff_id": null, | ||
| 2231 | + "status": "successful", | ||
| 2232 | + "notes": "", | ||
| 2233 | + "is_late": true | ||
| 2234 | + }, | ||
| 2235 | + { | ||
| 2236 | + "id": "C0152", | ||
| 2237 | + "activity_id": "A0013", | ||
| 2238 | + "user_id": "U0037", | ||
| 2239 | + "registration_id": "R0251", | ||
| 2240 | + "checkin_time": "2025-04-16 06:04:16", | ||
| 2241 | + "checkin_type": "QR code", | ||
| 2242 | + "location": { | ||
| 2243 | + "name": "深蓝咖啡馆", | ||
| 2244 | + "coordinates": "36.437377,116.319798" | ||
| 2245 | + }, | ||
| 2246 | + "staff_id": null, | ||
| 2247 | + "status": "successful", | ||
| 2248 | + "notes": "", | ||
| 2249 | + "is_late": false | ||
| 2250 | + }, | ||
| 2251 | + { | ||
| 2252 | + "id": "C0153", | ||
| 2253 | + "activity_id": "A0013", | ||
| 2254 | + "user_id": "U0010", | ||
| 2255 | + "registration_id": "R0252", | ||
| 2256 | + "checkin_time": "2025-04-16 06:06:45", | ||
| 2257 | + "checkin_type": "QR code", | ||
| 2258 | + "location": { | ||
| 2259 | + "name": "深蓝咖啡馆", | ||
| 2260 | + "coordinates": "25.502640,110.555487" | ||
| 2261 | + }, | ||
| 2262 | + "staff_id": null, | ||
| 2263 | + "status": "failed", | ||
| 2264 | + "notes": "设备问题", | ||
| 2265 | + "is_late": false | ||
| 2266 | + }, | ||
| 2267 | + { | ||
| 2268 | + "id": "C0154", | ||
| 2269 | + "activity_id": "A0013", | ||
| 2270 | + "user_id": "U0004", | ||
| 2271 | + "registration_id": "R0254", | ||
| 2272 | + "checkin_time": "2025-04-16 06:00:23", | ||
| 2273 | + "checkin_type": "QR code", | ||
| 2274 | + "location": { | ||
| 2275 | + "name": "深蓝咖啡馆", | ||
| 2276 | + "coordinates": "38.473438,101.763058" | ||
| 2277 | + }, | ||
| 2278 | + "staff_id": null, | ||
| 2279 | + "status": "successful", | ||
| 2280 | + "notes": "", | ||
| 2281 | + "is_late": false | ||
| 2282 | + }, | ||
| 2283 | + { | ||
| 2284 | + "id": "C0155", | ||
| 2285 | + "activity_id": "A0013", | ||
| 2286 | + "user_id": "U0005", | ||
| 2287 | + "registration_id": "R0255", | ||
| 2288 | + "checkin_time": "2025-04-16 06:50:21", | ||
| 2289 | + "checkin_type": "QR code", | ||
| 2290 | + "location": { | ||
| 2291 | + "name": "深蓝咖啡馆", | ||
| 2292 | + "coordinates": "25.433843,111.547821" | ||
| 2293 | + }, | ||
| 2294 | + "staff_id": null, | ||
| 2295 | + "status": "successful", | ||
| 2296 | + "notes": "", | ||
| 2297 | + "is_late": true | ||
| 2298 | + }, | ||
| 2299 | + { | ||
| 2300 | + "id": "C0156", | ||
| 2301 | + "activity_id": "A0013", | ||
| 2302 | + "user_id": "U0025", | ||
| 2303 | + "registration_id": "R0256", | ||
| 2304 | + "checkin_time": "2025-04-16 06:06:05", | ||
| 2305 | + "checkin_type": "manual", | ||
| 2306 | + "location": { | ||
| 2307 | + "name": "深蓝咖啡馆", | ||
| 2308 | + "coordinates": "33.246812,102.422719" | ||
| 2309 | + }, | ||
| 2310 | + "staff_id": "O0003", | ||
| 2311 | + "status": "successful", | ||
| 2312 | + "notes": "", | ||
| 2313 | + "is_late": false | ||
| 2314 | + }, | ||
| 2315 | + { | ||
| 2316 | + "id": "C0157", | ||
| 2317 | + "activity_id": "A0015", | ||
| 2318 | + "user_id": "U0035", | ||
| 2319 | + "registration_id": "R0263", | ||
| 2320 | + "checkin_time": "2025-04-16 06:21:26", | ||
| 2321 | + "checkin_type": "QR code", | ||
| 2322 | + "location": null, | ||
| 2323 | + "staff_id": null, | ||
| 2324 | + "status": "successful", | ||
| 2325 | + "notes": "", | ||
| 2326 | + "is_late": false | ||
| 2327 | + }, | ||
| 2328 | + { | ||
| 2329 | + "id": "C0158", | ||
| 2330 | + "activity_id": "A0015", | ||
| 2331 | + "user_id": "U0010", | ||
| 2332 | + "registration_id": "R0264", | ||
| 2333 | + "checkin_time": "2025-04-16 06:35:32", | ||
| 2334 | + "checkin_type": "QR code", | ||
| 2335 | + "location": null, | ||
| 2336 | + "staff_id": null, | ||
| 2337 | + "status": "successful", | ||
| 2338 | + "notes": "", | ||
| 2339 | + "is_late": true | ||
| 2340 | + }, | ||
| 2341 | + { | ||
| 2342 | + "id": "C0159", | ||
| 2343 | + "activity_id": "A0015", | ||
| 2344 | + "user_id": "U0015", | ||
| 2345 | + "registration_id": "R0265", | ||
| 2346 | + "checkin_time": "2025-04-16 05:52:07", | ||
| 2347 | + "checkin_type": "QR code", | ||
| 2348 | + "location": null, | ||
| 2349 | + "staff_id": null, | ||
| 2350 | + "status": "successful", | ||
| 2351 | + "notes": "", | ||
| 2352 | + "is_late": false | ||
| 2353 | + }, | ||
| 2354 | + { | ||
| 2355 | + "id": "C0160", | ||
| 2356 | + "activity_id": "A0015", | ||
| 2357 | + "user_id": "U0005", | ||
| 2358 | + "registration_id": "R0266", | ||
| 2359 | + "checkin_time": "2025-04-16 06:18:17", | ||
| 2360 | + "checkin_type": "QR code", | ||
| 2361 | + "location": null, | ||
| 2362 | + "staff_id": null, | ||
| 2363 | + "status": "successful", | ||
| 2364 | + "notes": "", | ||
| 2365 | + "is_late": false | ||
| 2366 | + }, | ||
| 2367 | + { | ||
| 2368 | + "id": "C0161", | ||
| 2369 | + "activity_id": "A0015", | ||
| 2370 | + "user_id": "U0001", | ||
| 2371 | + "registration_id": "R0267", | ||
| 2372 | + "checkin_time": "2025-04-16 06:05:44", | ||
| 2373 | + "checkin_type": "self-service", | ||
| 2374 | + "location": null, | ||
| 2375 | + "staff_id": null, | ||
| 2376 | + "status": "successful", | ||
| 2377 | + "notes": "准备充分", | ||
| 2378 | + "is_late": true | ||
| 2379 | + }, | ||
| 2380 | + { | ||
| 2381 | + "id": "C0162", | ||
| 2382 | + "activity_id": "A0015", | ||
| 2383 | + "user_id": "U0025", | ||
| 2384 | + "registration_id": "R0270", | ||
| 2385 | + "checkin_time": "2025-04-16 06:32:13", | ||
| 2386 | + "checkin_type": "QR code", | ||
| 2387 | + "location": null, | ||
| 2388 | + "staff_id": null, | ||
| 2389 | + "status": "successful", | ||
| 2390 | + "notes": "提前到达", | ||
| 2391 | + "is_late": false | ||
| 2392 | + }, | ||
| 2393 | + { | ||
| 2394 | + "id": "C0163", | ||
| 2395 | + "activity_id": "A0015", | ||
| 2396 | + "user_id": "U0018", | ||
| 2397 | + "registration_id": "R0274", | ||
| 2398 | + "checkin_time": "2025-04-16 06:25:01", | ||
| 2399 | + "checkin_type": "QR code", | ||
| 2400 | + "location": null, | ||
| 2401 | + "staff_id": null, | ||
| 2402 | + "status": "successful", | ||
| 2403 | + "notes": "提前到达", | ||
| 2404 | + "is_late": true | ||
| 2405 | + }, | ||
| 2406 | + { | ||
| 2407 | + "id": "C0164", | ||
| 2408 | + "activity_id": "A0015", | ||
| 2409 | + "user_id": "U0019", | ||
| 2410 | + "registration_id": "R0275", | ||
| 2411 | + "checkin_time": "2025-04-16 06:13:07", | ||
| 2412 | + "checkin_type": "QR code", | ||
| 2413 | + "location": null, | ||
| 2414 | + "staff_id": null, | ||
| 2415 | + "status": "successful", | ||
| 2416 | + "notes": "", | ||
| 2417 | + "is_late": false | ||
| 2418 | + }, | ||
| 2419 | + { | ||
| 2420 | + "id": "C0165", | ||
| 2421 | + "activity_id": "A0022", | ||
| 2422 | + "user_id": "U0026", | ||
| 2423 | + "registration_id": "R0304", | ||
| 2424 | + "checkin_time": "2025-04-16 07:15:52", | ||
| 2425 | + "checkin_type": "manual", | ||
| 2426 | + "location": { | ||
| 2427 | + "name": "大雁塔文化空间", | ||
| 2428 | + "coordinates": "26.580414,125.344607" | ||
| 2429 | + }, | ||
| 2430 | + "staff_id": "O0005", | ||
| 2431 | + "status": "successful", | ||
| 2432 | + "notes": "", | ||
| 2433 | + "is_late": true | ||
| 2434 | + }, | ||
| 2435 | + { | ||
| 2436 | + "id": "C0166", | ||
| 2437 | + "activity_id": "A0022", | ||
| 2438 | + "user_id": "U0016", | ||
| 2439 | + "registration_id": "R0307", | ||
| 2440 | + "checkin_time": "2025-04-16 06:48:22", | ||
| 2441 | + "checkin_type": "QR code", | ||
| 2442 | + "location": { | ||
| 2443 | + "name": "大雁塔文化空间", | ||
| 2444 | + "coordinates": "24.470878,121.132080" | ||
| 2445 | + }, | ||
| 2446 | + "staff_id": null, | ||
| 2447 | + "status": "successful", | ||
| 2448 | + "notes": "", | ||
| 2449 | + "is_late": false | ||
| 2450 | + }, | ||
| 2451 | + { | ||
| 2452 | + "id": "C0167", | ||
| 2453 | + "activity_id": "A0022", | ||
| 2454 | + "user_id": "U0001", | ||
| 2455 | + "registration_id": "R0310", | ||
| 2456 | + "checkin_time": "2025-04-16 06:28:54", | ||
| 2457 | + "checkin_type": "QR code", | ||
| 2458 | + "location": { | ||
| 2459 | + "name": "大雁塔文化空间", | ||
| 2460 | + "coordinates": "28.449496,109.032109" | ||
| 2461 | + }, | ||
| 2462 | + "staff_id": null, | ||
| 2463 | + "status": "successful", | ||
| 2464 | + "notes": "按时到达", | ||
| 2465 | + "is_late": false | ||
| 2466 | + }, | ||
| 2467 | + { | ||
| 2468 | + "id": "C0168", | ||
| 2469 | + "activity_id": "A0022", | ||
| 2470 | + "user_id": "U0008", | ||
| 2471 | + "registration_id": "R0312", | ||
| 2472 | + "checkin_time": "2025-04-16 06:55:34", | ||
| 2473 | + "checkin_type": "QR code", | ||
| 2474 | + "location": { | ||
| 2475 | + "name": "大雁塔文化空间", | ||
| 2476 | + "coordinates": "36.733507,110.478652" | ||
| 2477 | + }, | ||
| 2478 | + "staff_id": null, | ||
| 2479 | + "status": "successful", | ||
| 2480 | + "notes": "", | ||
| 2481 | + "is_late": false | ||
| 2482 | + }, | ||
| 2483 | + { | ||
| 2484 | + "id": "C0169", | ||
| 2485 | + "activity_id": "A0022", | ||
| 2486 | + "user_id": "U0021", | ||
| 2487 | + "registration_id": "R0313", | ||
| 2488 | + "checkin_time": "2025-04-16 06:27:02", | ||
| 2489 | + "checkin_type": "self-service", | ||
| 2490 | + "location": { | ||
| 2491 | + "name": "大雁塔文化空间", | ||
| 2492 | + "coordinates": "38.460924,120.561687" | ||
| 2493 | + }, | ||
| 2494 | + "staff_id": null, | ||
| 2495 | + "status": "successful", | ||
| 2496 | + "notes": "", | ||
| 2497 | + "is_late": false | ||
| 2498 | + }, | ||
| 2499 | + { | ||
| 2500 | + "id": "C0170", | ||
| 2501 | + "activity_id": "A0022", | ||
| 2502 | + "user_id": "U0035", | ||
| 2503 | + "registration_id": "R0314", | ||
| 2504 | + "checkin_time": "2025-04-16 06:31:10", | ||
| 2505 | + "checkin_type": "QR code", | ||
| 2506 | + "location": { | ||
| 2507 | + "name": "大雁塔文化空间", | ||
| 2508 | + "coordinates": "26.603106,100.136011" | ||
| 2509 | + }, | ||
| 2510 | + "staff_id": null, | ||
| 2511 | + "status": "successful", | ||
| 2512 | + "notes": "", | ||
| 2513 | + "is_late": false | ||
| 2514 | + }, | ||
| 2515 | + { | ||
| 2516 | + "id": "C0171", | ||
| 2517 | + "activity_id": "A0022", | ||
| 2518 | + "user_id": "U0009", | ||
| 2519 | + "registration_id": "R0316", | ||
| 2520 | + "checkin_time": "2025-04-16 06:23:40", | ||
| 2521 | + "checkin_type": "manual", | ||
| 2522 | + "location": { | ||
| 2523 | + "name": "大雁塔文化空间", | ||
| 2524 | + "coordinates": "34.533322,104.144383" | ||
| 2525 | + }, | ||
| 2526 | + "staff_id": "O0005", | ||
| 2527 | + "status": "successful", | ||
| 2528 | + "notes": "", | ||
| 2529 | + "is_late": false | ||
| 2530 | + }, | ||
| 2531 | + { | ||
| 2532 | + "id": "C0172", | ||
| 2533 | + "activity_id": "A0022", | ||
| 2534 | + "user_id": "U0015", | ||
| 2535 | + "registration_id": "R0317", | ||
| 2536 | + "checkin_time": "2025-04-16 06:55:20", | ||
| 2537 | + "checkin_type": "QR code", | ||
| 2538 | + "location": { | ||
| 2539 | + "name": "大雁塔文化空间", | ||
| 2540 | + "coordinates": "23.284204,106.163339" | ||
| 2541 | + }, | ||
| 2542 | + "staff_id": null, | ||
| 2543 | + "status": "successful", | ||
| 2544 | + "notes": "热情参与讨论", | ||
| 2545 | + "is_late": false | ||
| 2546 | + }, | ||
| 2547 | + { | ||
| 2548 | + "id": "C0173", | ||
| 2549 | + "activity_id": "A0022", | ||
| 2550 | + "user_id": "U0036", | ||
| 2551 | + "registration_id": "R0318", | ||
| 2552 | + "checkin_time": "2025-04-16 06:47:27", | ||
| 2553 | + "checkin_type": "QR code", | ||
| 2554 | + "location": { | ||
| 2555 | + "name": "大雁塔文化空间", | ||
| 2556 | + "coordinates": "32.940263,122.500088" | ||
| 2557 | + }, | ||
| 2558 | + "staff_id": null, | ||
| 2559 | + "status": "successful", | ||
| 2560 | + "notes": "", | ||
| 2561 | + "is_late": true | ||
| 2562 | + }, | ||
| 2563 | + { | ||
| 2564 | + "id": "C0174", | ||
| 2565 | + "activity_id": "A0022", | ||
| 2566 | + "user_id": "U0012", | ||
| 2567 | + "registration_id": "R0319", | ||
| 2568 | + "checkin_time": "2025-04-16 06:35:18", | ||
| 2569 | + "checkin_type": "QR code", | ||
| 2570 | + "location": { | ||
| 2571 | + "name": "大雁塔文化空间", | ||
| 2572 | + "coordinates": "23.633884,125.935592" | ||
| 2573 | + }, | ||
| 2574 | + "staff_id": null, | ||
| 2575 | + "status": "successful", | ||
| 2576 | + "notes": "", | ||
| 2577 | + "is_late": false | ||
| 2578 | + }, | ||
| 2579 | + { | ||
| 2580 | + "id": "C0175", | ||
| 2581 | + "activity_id": "A0022", | ||
| 2582 | + "user_id": "U0020", | ||
| 2583 | + "registration_id": "R0320", | ||
| 2584 | + "checkin_time": "2025-04-16 06:44:24", | ||
| 2585 | + "checkin_type": "manual", | ||
| 2586 | + "location": { | ||
| 2587 | + "name": "大雁塔文化空间", | ||
| 2588 | + "coordinates": "30.891166,113.054445" | ||
| 2589 | + }, | ||
| 2590 | + "staff_id": "O0005", | ||
| 2591 | + "status": "successful", | ||
| 2592 | + "notes": "", | ||
| 2593 | + "is_late": false | ||
| 2594 | + }, | ||
| 2595 | + { | ||
| 2596 | + "id": "C0176", | ||
| 2597 | + "activity_id": "A0022", | ||
| 2598 | + "user_id": "U0017", | ||
| 2599 | + "registration_id": "R0321", | ||
| 2600 | + "checkin_time": "2025-04-16 06:18:29", | ||
| 2601 | + "checkin_type": "QR code", | ||
| 2602 | + "location": { | ||
| 2603 | + "name": "大雁塔文化空间", | ||
| 2604 | + "coordinates": "38.287921,119.065611" | ||
| 2605 | + }, | ||
| 2606 | + "staff_id": null, | ||
| 2607 | + "status": "successful", | ||
| 2608 | + "notes": "", | ||
| 2609 | + "is_late": false | ||
| 2610 | + }, | ||
| 2611 | + { | ||
| 2612 | + "id": "C0177", | ||
| 2613 | + "activity_id": "A0022", | ||
| 2614 | + "user_id": "U0004", | ||
| 2615 | + "registration_id": "R0324", | ||
| 2616 | + "checkin_time": "2025-04-16 06:48:23", | ||
| 2617 | + "checkin_type": "QR code", | ||
| 2618 | + "location": { | ||
| 2619 | + "name": "大雁塔文化空间", | ||
| 2620 | + "coordinates": "30.466273,121.305050" | ||
| 2621 | + }, | ||
| 2622 | + "staff_id": null, | ||
| 2623 | + "status": "successful", | ||
| 2624 | + "notes": "提前到达", | ||
| 2625 | + "is_late": false | ||
| 2626 | + }, | ||
| 2627 | + { | ||
| 2628 | + "id": "C0178", | ||
| 2629 | + "activity_id": "A0022", | ||
| 2630 | + "user_id": "U0031", | ||
| 2631 | + "registration_id": "R0327", | ||
| 2632 | + "checkin_time": "2025-04-16 06:22:20", | ||
| 2633 | + "checkin_type": "QR code", | ||
| 2634 | + "location": { | ||
| 2635 | + "name": "大雁塔文化空间", | ||
| 2636 | + "coordinates": "30.379818,116.809350" | ||
| 2637 | + }, | ||
| 2638 | + "staff_id": null, | ||
| 2639 | + "status": "successful", | ||
| 2640 | + "notes": "", | ||
| 2641 | + "is_late": false | ||
| 2642 | + }, | ||
| 2643 | + { | ||
| 2644 | + "id": "C0179", | ||
| 2645 | + "activity_id": "A0022", | ||
| 2646 | + "user_id": "U0037", | ||
| 2647 | + "registration_id": "R0328", | ||
| 2648 | + "checkin_time": "2025-04-16 06:28:39", | ||
| 2649 | + "checkin_type": "QR code", | ||
| 2650 | + "location": { | ||
| 2651 | + "name": "大雁塔文化空间", | ||
| 2652 | + "coordinates": "26.477816,122.575710" | ||
| 2653 | + }, | ||
| 2654 | + "staff_id": null, | ||
| 2655 | + "status": "successful", | ||
| 2656 | + "notes": "", | ||
| 2657 | + "is_late": false | ||
| 2658 | + }, | ||
| 2659 | + { | ||
| 2660 | + "id": "C0180", | ||
| 2661 | + "activity_id": "A0022", | ||
| 2662 | + "user_id": "U0007", | ||
| 2663 | + "registration_id": "R0329", | ||
| 2664 | + "checkin_time": "2025-04-16 06:37:26", | ||
| 2665 | + "checkin_type": "QR code", | ||
| 2666 | + "location": { | ||
| 2667 | + "name": "大雁塔文化空间", | ||
| 2668 | + "coordinates": "25.742254,108.270197" | ||
| 2669 | + }, | ||
| 2670 | + "staff_id": null, | ||
| 2671 | + "status": "successful", | ||
| 2672 | + "notes": "", | ||
| 2673 | + "is_late": false | ||
| 2674 | + }, | ||
| 2675 | + { | ||
| 2676 | + "id": "C0181", | ||
| 2677 | + "activity_id": "A0022", | ||
| 2678 | + "user_id": "U0018", | ||
| 2679 | + "registration_id": "R0331", | ||
| 2680 | + "checkin_time": "2025-04-16 06:59:00", | ||
| 2681 | + "checkin_type": "QR code", | ||
| 2682 | + "location": { | ||
| 2683 | + "name": "大雁塔文化空间", | ||
| 2684 | + "coordinates": "27.938128,105.012614" | ||
| 2685 | + }, | ||
| 2686 | + "staff_id": null, | ||
| 2687 | + "status": "successful", | ||
| 2688 | + "notes": "", | ||
| 2689 | + "is_late": false | ||
| 2690 | + }, | ||
| 2691 | + { | ||
| 2692 | + "id": "C0182", | ||
| 2693 | + "activity_id": "A0022", | ||
| 2694 | + "user_id": "U0030", | ||
| 2695 | + "registration_id": "R0332", | ||
| 2696 | + "checkin_time": "2025-04-16 07:01:36", | ||
| 2697 | + "checkin_type": "manual", | ||
| 2698 | + "location": { | ||
| 2699 | + "name": "大雁塔文化空间", | ||
| 2700 | + "coordinates": "39.677261,117.105251" | ||
| 2701 | + }, | ||
| 2702 | + "staff_id": "O0005", | ||
| 2703 | + "status": "successful", | ||
| 2704 | + "notes": "", | ||
| 2705 | + "is_late": true | ||
| 2706 | + }, | ||
| 2707 | + { | ||
| 2708 | + "id": "C0183", | ||
| 2709 | + "activity_id": "A0022", | ||
| 2710 | + "user_id": "U0006", | ||
| 2711 | + "registration_id": "R0333", | ||
| 2712 | + "checkin_time": "2025-04-16 06:51:37", | ||
| 2713 | + "checkin_type": "QR code", | ||
| 2714 | + "location": { | ||
| 2715 | + "name": "大雁塔文化空间", | ||
| 2716 | + "coordinates": "26.249063,116.245331" | ||
| 2717 | + }, | ||
| 2718 | + "staff_id": null, | ||
| 2719 | + "status": "successful", | ||
| 2720 | + "notes": "", | ||
| 2721 | + "is_late": false | ||
| 2722 | + }, | ||
| 2723 | + { | ||
| 2724 | + "id": "C0184", | ||
| 2725 | + "activity_id": "A0022", | ||
| 2726 | + "user_id": "U0014", | ||
| 2727 | + "registration_id": "R0336", | ||
| 2728 | + "checkin_time": "2025-04-16 06:33:41", | ||
| 2729 | + "checkin_type": "QR code", | ||
| 2730 | + "location": { | ||
| 2731 | + "name": "大雁塔文化空间", | ||
| 2732 | + "coordinates": "32.162403,115.813070" | ||
| 2733 | + }, | ||
| 2734 | + "staff_id": null, | ||
| 2735 | + "status": "successful", | ||
| 2736 | + "notes": "", | ||
| 2737 | + "is_late": false | ||
| 2738 | + }, | ||
| 2739 | + { | ||
| 2740 | + "id": "C0185", | ||
| 2741 | + "activity_id": "A0022", | ||
| 2742 | + "user_id": "U0024", | ||
| 2743 | + "registration_id": "R0338", | ||
| 2744 | + "checkin_time": "2025-04-16 06:54:14", | ||
| 2745 | + "checkin_type": "QR code", | ||
| 2746 | + "location": { | ||
| 2747 | + "name": "大雁塔文化空间", | ||
| 2748 | + "coordinates": "25.927681,123.295939" | ||
| 2749 | + }, | ||
| 2750 | + "staff_id": null, | ||
| 2751 | + "status": "successful", | ||
| 2752 | + "notes": "", | ||
| 2753 | + "is_late": false | ||
| 2754 | + }, | ||
| 2755 | + { | ||
| 2756 | + "id": "C0186", | ||
| 2757 | + "activity_id": "A0022", | ||
| 2758 | + "user_id": "U0003", | ||
| 2759 | + "registration_id": "R0339", | ||
| 2760 | + "checkin_time": "2025-04-16 06:37:10", | ||
| 2761 | + "checkin_type": "QR code", | ||
| 2762 | + "location": { | ||
| 2763 | + "name": "大雁塔文化空间", | ||
| 2764 | + "coordinates": "24.967249,100.833877" | ||
| 2765 | + }, | ||
| 2766 | + "staff_id": null, | ||
| 2767 | + "status": "successful", | ||
| 2768 | + "notes": "", | ||
| 2769 | + "is_late": false | ||
| 2770 | + }, | ||
| 2771 | + { | ||
| 2772 | + "id": "C0187", | ||
| 2773 | + "activity_id": "A0022", | ||
| 2774 | + "user_id": "U0033", | ||
| 2775 | + "registration_id": "R0340", | ||
| 2776 | + "checkin_time": "2025-04-16 06:40:31", | ||
| 2777 | + "checkin_type": "QR code", | ||
| 2778 | + "location": { | ||
| 2779 | + "name": "大雁塔文化空间", | ||
| 2780 | + "coordinates": "34.843743,113.933664" | ||
| 2781 | + }, | ||
| 2782 | + "staff_id": null, | ||
| 2783 | + "status": "successful", | ||
| 2784 | + "notes": "", | ||
| 2785 | + "is_late": false | ||
| 2786 | + }, | ||
| 2787 | + { | ||
| 2788 | + "id": "C0188", | ||
| 2789 | + "activity_id": "A0022", | ||
| 2790 | + "user_id": "U0011", | ||
| 2791 | + "registration_id": "R0342", | ||
| 2792 | + "checkin_time": "2025-04-16 06:44:31", | ||
| 2793 | + "checkin_type": "QR code", | ||
| 2794 | + "location": { | ||
| 2795 | + "name": "大雁塔文化空间", | ||
| 2796 | + "coordinates": "38.968901,123.655330" | ||
| 2797 | + }, | ||
| 2798 | + "staff_id": null, | ||
| 2799 | + "status": "successful", | ||
| 2800 | + "notes": "", | ||
| 2801 | + "is_late": true | ||
| 2802 | + }, | ||
| 2803 | + { | ||
| 2804 | + "id": "C0189", | ||
| 2805 | + "activity_id": "A0022", | ||
| 2806 | + "user_id": "U0005", | ||
| 2807 | + "registration_id": "R0343", | ||
| 2808 | + "checkin_time": "2025-04-16 06:18:06", | ||
| 2809 | + "checkin_type": "self-service", | ||
| 2810 | + "location": { | ||
| 2811 | + "name": "大雁塔文化空间", | ||
| 2812 | + "coordinates": "22.517659,116.229674" | ||
| 2813 | + }, | ||
| 2814 | + "staff_id": null, | ||
| 2815 | + "status": "successful", | ||
| 2816 | + "notes": "", | ||
| 2817 | + "is_late": false | ||
| 2818 | + }, | ||
| 2819 | + { | ||
| 2820 | + "id": "C0190", | ||
| 2821 | + "activity_id": "A0023", | ||
| 2822 | + "user_id": "U0014", | ||
| 2823 | + "registration_id": "R0344", | ||
| 2824 | + "checkin_time": "2025-03-27 05:16:40", | ||
| 2825 | + "checkin_type": "QR code", | ||
| 2826 | + "location": null, | ||
| 2827 | + "staff_id": null, | ||
| 2828 | + "status": "successful", | ||
| 2829 | + "notes": "提前到达", | ||
| 2830 | + "is_late": false | ||
| 2831 | + }, | ||
| 2832 | + { | ||
| 2833 | + "id": "C0191", | ||
| 2834 | + "activity_id": "A0023", | ||
| 2835 | + "user_id": "U0006", | ||
| 2836 | + "registration_id": "R0346", | ||
| 2837 | + "checkin_time": "2025-03-27 05:35:36", | ||
| 2838 | + "checkin_type": "QR code", | ||
| 2839 | + "location": null, | ||
| 2840 | + "staff_id": null, | ||
| 2841 | + "status": "successful", | ||
| 2842 | + "notes": "提前到达", | ||
| 2843 | + "is_late": false | ||
| 2844 | + }, | ||
| 2845 | + { | ||
| 2846 | + "id": "C0192", | ||
| 2847 | + "activity_id": "A0023", | ||
| 2848 | + "user_id": "U0030", | ||
| 2849 | + "registration_id": "R0347", | ||
| 2850 | + "checkin_time": "2025-03-27 05:23:26", | ||
| 2851 | + "checkin_type": "QR code", | ||
| 2852 | + "location": null, | ||
| 2853 | + "staff_id": null, | ||
| 2854 | + "status": "successful", | ||
| 2855 | + "notes": "", | ||
| 2856 | + "is_late": false | ||
| 2857 | + }, | ||
| 2858 | + { | ||
| 2859 | + "id": "C0193", | ||
| 2860 | + "activity_id": "A0023", | ||
| 2861 | + "user_id": "U0035", | ||
| 2862 | + "registration_id": "R0348", | ||
| 2863 | + "checkin_time": "2025-03-27 05:11:26", | ||
| 2864 | + "checkin_type": "QR code", | ||
| 2865 | + "location": null, | ||
| 2866 | + "staff_id": null, | ||
| 2867 | + "status": "successful", | ||
| 2868 | + "notes": "", | ||
| 2869 | + "is_late": false | ||
| 2870 | + }, | ||
| 2871 | + { | ||
| 2872 | + "id": "C0194", | ||
| 2873 | + "activity_id": "A0023", | ||
| 2874 | + "user_id": "U0007", | ||
| 2875 | + "registration_id": "R0350", | ||
| 2876 | + "checkin_time": "2025-03-27 05:05:40", | ||
| 2877 | + "checkin_type": "QR code", | ||
| 2878 | + "location": null, | ||
| 2879 | + "staff_id": null, | ||
| 2880 | + "status": "failed", | ||
| 2881 | + "notes": "签到后临时离开", | ||
| 2882 | + "is_late": false | ||
| 2883 | + }, | ||
| 2884 | + { | ||
| 2885 | + "id": "C0195", | ||
| 2886 | + "activity_id": "A0023", | ||
| 2887 | + "user_id": "U0016", | ||
| 2888 | + "registration_id": "R0351", | ||
| 2889 | + "checkin_time": "2025-03-27 05:30:46", | ||
| 2890 | + "checkin_type": "QR code", | ||
| 2891 | + "location": null, | ||
| 2892 | + "staff_id": null, | ||
| 2893 | + "status": "successful", | ||
| 2894 | + "notes": "", | ||
| 2895 | + "is_late": true | ||
| 2896 | + }, | ||
| 2897 | + { | ||
| 2898 | + "id": "C0196", | ||
| 2899 | + "activity_id": "A0023", | ||
| 2900 | + "user_id": "U0011", | ||
| 2901 | + "registration_id": "R0352", | ||
| 2902 | + "checkin_time": "2025-03-27 05:32:44", | ||
| 2903 | + "checkin_type": "manual", | ||
| 2904 | + "location": null, | ||
| 2905 | + "staff_id": "O0007", | ||
| 2906 | + "status": "successful", | ||
| 2907 | + "notes": "", | ||
| 2908 | + "is_late": false | ||
| 2909 | + }, | ||
| 2910 | + { | ||
| 2911 | + "id": "C0197", | ||
| 2912 | + "activity_id": "A0023", | ||
| 2913 | + "user_id": "U0003", | ||
| 2914 | + "registration_id": "R0353", | ||
| 2915 | + "checkin_time": "2025-03-27 05:31:42", | ||
| 2916 | + "checkin_type": "QR code", | ||
| 2917 | + "location": null, | ||
| 2918 | + "staff_id": null, | ||
| 2919 | + "status": "successful", | ||
| 2920 | + "notes": "提前到达", | ||
| 2921 | + "is_late": false | ||
| 2922 | + }, | ||
| 2923 | + { | ||
| 2924 | + "id": "C0198", | ||
| 2925 | + "activity_id": "A0023", | ||
| 2926 | + "user_id": "U0029", | ||
| 2927 | + "registration_id": "R0354", | ||
| 2928 | + "checkin_time": "2025-03-27 04:59:34", | ||
| 2929 | + "checkin_type": "QR code", | ||
| 2930 | + "location": null, | ||
| 2931 | + "staff_id": null, | ||
| 2932 | + "status": "successful", | ||
| 2933 | + "notes": "", | ||
| 2934 | + "is_late": false | ||
| 2935 | + }, | ||
| 2936 | + { | ||
| 2937 | + "id": "C0199", | ||
| 2938 | + "activity_id": "A0023", | ||
| 2939 | + "user_id": "U0034", | ||
| 2940 | + "registration_id": "R0355", | ||
| 2941 | + "checkin_time": "2025-03-27 05:32:02", | ||
| 2942 | + "checkin_type": "manual", | ||
| 2943 | + "location": null, | ||
| 2944 | + "staff_id": "O0007", | ||
| 2945 | + "status": "successful", | ||
| 2946 | + "notes": "", | ||
| 2947 | + "is_late": true | ||
| 2948 | + }, | ||
| 2949 | + { | ||
| 2950 | + "id": "C0200", | ||
| 2951 | + "activity_id": "A0023", | ||
| 2952 | + "user_id": "U0002", | ||
| 2953 | + "registration_id": "R0356", | ||
| 2954 | + "checkin_time": "2025-03-27 05:26:35", | ||
| 2955 | + "checkin_type": "QR code", | ||
| 2956 | + "location": null, | ||
| 2957 | + "staff_id": null, | ||
| 2958 | + "status": "successful", | ||
| 2959 | + "notes": "", | ||
| 2960 | + "is_late": false | ||
| 2961 | + }, | ||
| 2962 | + { | ||
| 2963 | + "id": "C0201", | ||
| 2964 | + "activity_id": "A0023", | ||
| 2965 | + "user_id": "U0026", | ||
| 2966 | + "registration_id": "R0357", | ||
| 2967 | + "checkin_time": "2025-03-27 05:05:43", | ||
| 2968 | + "checkin_type": "manual", | ||
| 2969 | + "location": null, | ||
| 2970 | + "staff_id": "O0007", | ||
| 2971 | + "status": "successful", | ||
| 2972 | + "notes": "按时到达", | ||
| 2973 | + "is_late": false | ||
| 2974 | + }, | ||
| 2975 | + { | ||
| 2976 | + "id": "C0202", | ||
| 2977 | + "activity_id": "A0023", | ||
| 2978 | + "user_id": "U0008", | ||
| 2979 | + "registration_id": "R0358", | ||
| 2980 | + "checkin_time": "2025-03-27 05:26:39", | ||
| 2981 | + "checkin_type": "manual", | ||
| 2982 | + "location": null, | ||
| 2983 | + "staff_id": "O0007", | ||
| 2984 | + "status": "successful", | ||
| 2985 | + "notes": "", | ||
| 2986 | + "is_late": false | ||
| 2987 | + }, | ||
| 2988 | + { | ||
| 2989 | + "id": "C0203", | ||
| 2990 | + "activity_id": "A0023", | ||
| 2991 | + "user_id": "U0020", | ||
| 2992 | + "registration_id": "R0360", | ||
| 2993 | + "checkin_time": "2025-03-27 05:57:08", | ||
| 2994 | + "checkin_type": "manual", | ||
| 2995 | + "location": null, | ||
| 2996 | + "staff_id": "O0007", | ||
| 2997 | + "status": "successful", | ||
| 2998 | + "notes": "", | ||
| 2999 | + "is_late": true | ||
| 3000 | + }, | ||
| 3001 | + { | ||
| 3002 | + "id": "C0204", | ||
| 3003 | + "activity_id": "A0023", | ||
| 3004 | + "user_id": "U0038", | ||
| 3005 | + "registration_id": "R0361", | ||
| 3006 | + "checkin_time": "2025-03-27 05:23:01", | ||
| 3007 | + "checkin_type": "QR code", | ||
| 3008 | + "location": null, | ||
| 3009 | + "staff_id": null, | ||
| 3010 | + "status": "successful", | ||
| 3011 | + "notes": "热情参与讨论", | ||
| 3012 | + "is_late": false | ||
| 3013 | + }, | ||
| 3014 | + { | ||
| 3015 | + "id": "C0205", | ||
| 3016 | + "activity_id": "A0023", | ||
| 3017 | + "user_id": "U0024", | ||
| 3018 | + "registration_id": "R0362", | ||
| 3019 | + "checkin_time": "2025-03-27 05:33:56", | ||
| 3020 | + "checkin_type": "QR code", | ||
| 3021 | + "location": null, | ||
| 3022 | + "staff_id": null, | ||
| 3023 | + "status": "successful", | ||
| 3024 | + "notes": "", | ||
| 3025 | + "is_late": false | ||
| 3026 | + }, | ||
| 3027 | + { | ||
| 3028 | + "id": "C0206", | ||
| 3029 | + "activity_id": "A0023", | ||
| 3030 | + "user_id": "U0025", | ||
| 3031 | + "registration_id": "R0363", | ||
| 3032 | + "checkin_time": "2025-03-27 05:23:06", | ||
| 3033 | + "checkin_type": "self-service", | ||
| 3034 | + "location": null, | ||
| 3035 | + "staff_id": null, | ||
| 3036 | + "status": "successful", | ||
| 3037 | + "notes": "", | ||
| 3038 | + "is_late": false | ||
| 3039 | + }, | ||
| 3040 | + { | ||
| 3041 | + "id": "C0207", | ||
| 3042 | + "activity_id": "A0023", | ||
| 3043 | + "user_id": "U0001", | ||
| 3044 | + "registration_id": "R0365", | ||
| 3045 | + "checkin_time": "2025-03-27 05:18:27", | ||
| 3046 | + "checkin_type": "QR code", | ||
| 3047 | + "location": null, | ||
| 3048 | + "staff_id": null, | ||
| 3049 | + "status": "successful", | ||
| 3050 | + "notes": "", | ||
| 3051 | + "is_late": true | ||
| 3052 | + }, | ||
| 3053 | + { | ||
| 3054 | + "id": "C0208", | ||
| 3055 | + "activity_id": "A0023", | ||
| 3056 | + "user_id": "U0019", | ||
| 3057 | + "registration_id": "R0366", | ||
| 3058 | + "checkin_time": "2025-03-27 05:34:53", | ||
| 3059 | + "checkin_type": "QR code", | ||
| 3060 | + "location": null, | ||
| 3061 | + "staff_id": null, | ||
| 3062 | + "status": "successful", | ||
| 3063 | + "notes": "", | ||
| 3064 | + "is_late": false | ||
| 3065 | + }, | ||
| 3066 | + { | ||
| 3067 | + "id": "C0209", | ||
| 3068 | + "activity_id": "A0023", | ||
| 3069 | + "user_id": "U0027", | ||
| 3070 | + "registration_id": "R0370", | ||
| 3071 | + "checkin_time": "2025-03-27 05:33:23", | ||
| 3072 | + "checkin_type": "QR code", | ||
| 3073 | + "location": null, | ||
| 3074 | + "staff_id": null, | ||
| 3075 | + "status": "successful", | ||
| 3076 | + "notes": "提前到达", | ||
| 3077 | + "is_late": true | ||
| 3078 | + }, | ||
| 3079 | + { | ||
| 3080 | + "id": "C0210", | ||
| 3081 | + "activity_id": "A0023", | ||
| 3082 | + "user_id": "U0036", | ||
| 3083 | + "registration_id": "R0371", | ||
| 3084 | + "checkin_time": "2025-03-27 05:22:50", | ||
| 3085 | + "checkin_type": "manual", | ||
| 3086 | + "location": null, | ||
| 3087 | + "staff_id": "O0007", | ||
| 3088 | + "status": "successful", | ||
| 3089 | + "notes": "", | ||
| 3090 | + "is_late": false | ||
| 3091 | + }, | ||
| 3092 | + { | ||
| 3093 | + "id": "C0211", | ||
| 3094 | + "activity_id": "A0023", | ||
| 3095 | + "user_id": "U0031", | ||
| 3096 | + "registration_id": "R0373", | ||
| 3097 | + "checkin_time": "2025-03-27 05:34:33", | ||
| 3098 | + "checkin_type": "manual", | ||
| 3099 | + "location": null, | ||
| 3100 | + "staff_id": "O0007", | ||
| 3101 | + "status": "successful", | ||
| 3102 | + "notes": "提前到达", | ||
| 3103 | + "is_late": false | ||
| 3104 | + }, | ||
| 3105 | + { | ||
| 3106 | + "id": "C0212", | ||
| 3107 | + "activity_id": "A0023", | ||
| 3108 | + "user_id": "U0037", | ||
| 3109 | + "registration_id": "R0374", | ||
| 3110 | + "checkin_time": "2025-03-27 05:27:34", | ||
| 3111 | + "checkin_type": "QR code", | ||
| 3112 | + "location": null, | ||
| 3113 | + "staff_id": null, | ||
| 3114 | + "status": "successful", | ||
| 3115 | + "notes": "热情参与讨论", | ||
| 3116 | + "is_late": false | ||
| 3117 | + }, | ||
| 3118 | + { | ||
| 3119 | + "id": "C0213", | ||
| 3120 | + "activity_id": "A0023", | ||
| 3121 | + "user_id": "U0013", | ||
| 3122 | + "registration_id": "R0375", | ||
| 3123 | + "checkin_time": "2025-03-27 05:23:16", | ||
| 3124 | + "checkin_type": "QR code", | ||
| 3125 | + "location": null, | ||
| 3126 | + "staff_id": null, | ||
| 3127 | + "status": "successful", | ||
| 3128 | + "notes": "带了书本", | ||
| 3129 | + "is_late": false | ||
| 3130 | + }, | ||
| 3131 | + { | ||
| 3132 | + "id": "C0214", | ||
| 3133 | + "activity_id": "A0023", | ||
| 3134 | + "user_id": "U0005", | ||
| 3135 | + "registration_id": "R0376", | ||
| 3136 | + "checkin_time": "2025-03-27 05:11:53", | ||
| 3137 | + "checkin_type": "QR code", | ||
| 3138 | + "location": null, | ||
| 3139 | + "staff_id": null, | ||
| 3140 | + "status": "failed", | ||
| 3141 | + "notes": "网络连接不稳定", | ||
| 3142 | + "is_late": false | ||
| 3143 | + }, | ||
| 3144 | + { | ||
| 3145 | + "id": "C0215", | ||
| 3146 | + "activity_id": "A0023", | ||
| 3147 | + "user_id": "U0039", | ||
| 3148 | + "registration_id": "R0377", | ||
| 3149 | + "checkin_time": "2025-03-27 05:01:36", | ||
| 3150 | + "checkin_type": "manual", | ||
| 3151 | + "location": null, | ||
| 3152 | + "staff_id": "O0007", | ||
| 3153 | + "status": "successful", | ||
| 3154 | + "notes": "", | ||
| 3155 | + "is_late": false | ||
| 3156 | + }, | ||
| 3157 | + { | ||
| 3158 | + "id": "C0216", | ||
| 3159 | + "activity_id": "A0023", | ||
| 3160 | + "user_id": "U0017", | ||
| 3161 | + "registration_id": "R0379", | ||
| 3162 | + "checkin_time": "2025-03-27 05:31:07", | ||
| 3163 | + "checkin_type": "QR code", | ||
| 3164 | + "location": null, | ||
| 3165 | + "staff_id": null, | ||
| 3166 | + "status": "successful", | ||
| 3167 | + "notes": "", | ||
| 3168 | + "is_late": false | ||
| 3169 | + }, | ||
| 3170 | + { | ||
| 3171 | + "id": "C0217", | ||
| 3172 | + "activity_id": "A0023", | ||
| 3173 | + "user_id": "U0004", | ||
| 3174 | + "registration_id": "R0380", | ||
| 3175 | + "checkin_time": "2025-03-27 05:42:59", | ||
| 3176 | + "checkin_type": "manual", | ||
| 3177 | + "location": null, | ||
| 3178 | + "staff_id": "O0007", | ||
| 3179 | + "status": "successful", | ||
| 3180 | + "notes": "准备充分", | ||
| 3181 | + "is_late": false | ||
| 3182 | + }, | ||
| 3183 | + { | ||
| 3184 | + "id": "C0218", | ||
| 3185 | + "activity_id": "A0023", | ||
| 3186 | + "user_id": "U0015", | ||
| 3187 | + "registration_id": "R0381", | ||
| 3188 | + "checkin_time": "2025-03-27 05:45:54", | ||
| 3189 | + "checkin_type": "self-service", | ||
| 3190 | + "location": null, | ||
| 3191 | + "staff_id": null, | ||
| 3192 | + "status": "successful", | ||
| 3193 | + "notes": "", | ||
| 3194 | + "is_late": true | ||
| 3195 | + }, | ||
| 3196 | + { | ||
| 3197 | + "id": "C0219", | ||
| 3198 | + "activity_id": "A0023", | ||
| 3199 | + "user_id": "U0009", | ||
| 3200 | + "registration_id": "R0382", | ||
| 3201 | + "checkin_time": "2025-03-27 05:26:18", | ||
| 3202 | + "checkin_type": "manual", | ||
| 3203 | + "location": null, | ||
| 3204 | + "staff_id": "O0007", | ||
| 3205 | + "status": "successful", | ||
| 3206 | + "notes": "带了书本", | ||
| 3207 | + "is_late": true | ||
| 3208 | + }, | ||
| 3209 | + { | ||
| 3210 | + "id": "C0220", | ||
| 3211 | + "activity_id": "A0023", | ||
| 3212 | + "user_id": "U0040", | ||
| 3213 | + "registration_id": "R0383", | ||
| 3214 | + "checkin_time": "2025-03-27 05:30:24", | ||
| 3215 | + "checkin_type": "QR code", | ||
| 3216 | + "location": null, | ||
| 3217 | + "staff_id": null, | ||
| 3218 | + "status": "successful", | ||
| 3219 | + "notes": "", | ||
| 3220 | + "is_late": false | ||
| 3221 | + }, | ||
| 3222 | + { | ||
| 3223 | + "id": "C0221", | ||
| 3224 | + "activity_id": "A0027", | ||
| 3225 | + "user_id": "U0017", | ||
| 3226 | + "registration_id": "R0407", | ||
| 3227 | + "checkin_time": "2025-04-16 05:32:53", | ||
| 3228 | + "checkin_type": "QR code", | ||
| 3229 | + "location": { | ||
| 3230 | + "name": "大雁塔文化空间", | ||
| 3231 | + "coordinates": "38.833814,114.514317" | ||
| 3232 | + }, | ||
| 3233 | + "staff_id": null, | ||
| 3234 | + "status": "successful", | ||
| 3235 | + "notes": "提前到达", | ||
| 3236 | + "is_late": true | ||
| 3237 | + }, | ||
| 3238 | + { | ||
| 3239 | + "id": "C0222", | ||
| 3240 | + "activity_id": "A0027", | ||
| 3241 | + "user_id": "U0031", | ||
| 3242 | + "registration_id": "R0408", | ||
| 3243 | + "checkin_time": "2025-04-16 05:46:08", | ||
| 3244 | + "checkin_type": "self-service", | ||
| 3245 | + "location": { | ||
| 3246 | + "name": "大雁塔文化空间", | ||
| 3247 | + "coordinates": "27.781089,102.822173" | ||
| 3248 | + }, | ||
| 3249 | + "staff_id": null, | ||
| 3250 | + "status": "successful", | ||
| 3251 | + "notes": "", | ||
| 3252 | + "is_late": false | ||
| 3253 | + }, | ||
| 3254 | + { | ||
| 3255 | + "id": "C0223", | ||
| 3256 | + "activity_id": "A0027", | ||
| 3257 | + "user_id": "U0029", | ||
| 3258 | + "registration_id": "R0410", | ||
| 3259 | + "checkin_time": "2025-04-16 05:47:53", | ||
| 3260 | + "checkin_type": "QR code", | ||
| 3261 | + "location": { | ||
| 3262 | + "name": "大雁塔文化空间", | ||
| 3263 | + "coordinates": "27.308599,114.704434" | ||
| 3264 | + }, | ||
| 3265 | + "staff_id": null, | ||
| 3266 | + "status": "successful", | ||
| 3267 | + "notes": "", | ||
| 3268 | + "is_late": false | ||
| 3269 | + }, | ||
| 3270 | + { | ||
| 3271 | + "id": "C0224", | ||
| 3272 | + "activity_id": "A0027", | ||
| 3273 | + "user_id": "U0007", | ||
| 3274 | + "registration_id": "R0411", | ||
| 3275 | + "checkin_time": "2025-04-16 05:40:07", | ||
| 3276 | + "checkin_type": "QR code", | ||
| 3277 | + "location": { | ||
| 3278 | + "name": "大雁塔文化空间", | ||
| 3279 | + "coordinates": "38.156809,110.024987" | ||
| 3280 | + }, | ||
| 3281 | + "staff_id": null, | ||
| 3282 | + "status": "successful", | ||
| 3283 | + "notes": "", | ||
| 3284 | + "is_late": false | ||
| 3285 | + }, | ||
| 3286 | + { | ||
| 3287 | + "id": "C0225", | ||
| 3288 | + "activity_id": "A0027", | ||
| 3289 | + "user_id": "U0022", | ||
| 3290 | + "registration_id": "R0414", | ||
| 3291 | + "checkin_time": "2025-04-16 05:55:30", | ||
| 3292 | + "checkin_type": "QR code", | ||
| 3293 | + "location": { | ||
| 3294 | + "name": "大雁塔文化空间", | ||
| 3295 | + "coordinates": "30.231849,102.497485" | ||
| 3296 | + }, | ||
| 3297 | + "staff_id": null, | ||
| 3298 | + "status": "successful", | ||
| 3299 | + "notes": "", | ||
| 3300 | + "is_late": true | ||
| 3301 | + }, | ||
| 3302 | + { | ||
| 3303 | + "id": "C0226", | ||
| 3304 | + "activity_id": "A0027", | ||
| 3305 | + "user_id": "U0027", | ||
| 3306 | + "registration_id": "R0417", | ||
| 3307 | + "checkin_time": "2025-04-16 05:54:23", | ||
| 3308 | + "checkin_type": "QR code", | ||
| 3309 | + "location": { | ||
| 3310 | + "name": "大雁塔文化空间", | ||
| 3311 | + "coordinates": "30.564601,104.408038" | ||
| 3312 | + }, | ||
| 3313 | + "staff_id": null, | ||
| 3314 | + "status": "successful", | ||
| 3315 | + "notes": "", | ||
| 3316 | + "is_late": true | ||
| 3317 | + }, | ||
| 3318 | + { | ||
| 3319 | + "id": "C0227", | ||
| 3320 | + "activity_id": "A0027", | ||
| 3321 | + "user_id": "U0005", | ||
| 3322 | + "registration_id": "R0418", | ||
| 3323 | + "checkin_time": "2025-04-16 05:47:45", | ||
| 3324 | + "checkin_type": "QR code", | ||
| 3325 | + "location": { | ||
| 3326 | + "name": "大雁塔文化空间", | ||
| 3327 | + "coordinates": "24.122715,109.827973" | ||
| 3328 | + }, | ||
| 3329 | + "staff_id": null, | ||
| 3330 | + "status": "successful", | ||
| 3331 | + "notes": "", | ||
| 3332 | + "is_late": false | ||
| 3333 | + }, | ||
| 3334 | + { | ||
| 3335 | + "id": "C0228", | ||
| 3336 | + "activity_id": "A0027", | ||
| 3337 | + "user_id": "U0013", | ||
| 3338 | + "registration_id": "R0419", | ||
| 3339 | + "checkin_time": "2025-04-16 05:27:24", | ||
| 3340 | + "checkin_type": "QR code", | ||
| 3341 | + "location": { | ||
| 3342 | + "name": "大雁塔文化空间", | ||
| 3343 | + "coordinates": "25.549267,111.522543" | ||
| 3344 | + }, | ||
| 3345 | + "staff_id": null, | ||
| 3346 | + "status": "successful", | ||
| 3347 | + "notes": "", | ||
| 3348 | + "is_late": true | ||
| 3349 | + }, | ||
| 3350 | + { | ||
| 3351 | + "id": "C0229", | ||
| 3352 | + "activity_id": "A0027", | ||
| 3353 | + "user_id": "U0037", | ||
| 3354 | + "registration_id": "R0421", | ||
| 3355 | + "checkin_time": "2025-04-16 05:22:07", | ||
| 3356 | + "checkin_type": "QR code", | ||
| 3357 | + "location": { | ||
| 3358 | + "name": "大雁塔文化空间", | ||
| 3359 | + "coordinates": "26.680011,113.731917" | ||
| 3360 | + }, | ||
| 3361 | + "staff_id": null, | ||
| 3362 | + "status": "successful", | ||
| 3363 | + "notes": "准备充分", | ||
| 3364 | + "is_late": true | ||
| 3365 | + }, | ||
| 3366 | + { | ||
| 3367 | + "id": "C0230", | ||
| 3368 | + "activity_id": "A0027", | ||
| 3369 | + "user_id": "U0012", | ||
| 3370 | + "registration_id": "R0422", | ||
| 3371 | + "checkin_time": "2025-04-16 05:08:30", | ||
| 3372 | + "checkin_type": "QR code", | ||
| 3373 | + "location": { | ||
| 3374 | + "name": "大雁塔文化空间", | ||
| 3375 | + "coordinates": "30.777704,110.012542" | ||
| 3376 | + }, | ||
| 3377 | + "staff_id": null, | ||
| 3378 | + "status": "successful", | ||
| 3379 | + "notes": "按时到达", | ||
| 3380 | + "is_late": false | ||
| 3381 | + }, | ||
| 3382 | + { | ||
| 3383 | + "id": "C0231", | ||
| 3384 | + "activity_id": "A0027", | ||
| 3385 | + "user_id": "U0024", | ||
| 3386 | + "registration_id": "R0423", | ||
| 3387 | + "checkin_time": "2025-04-16 05:24:15", | ||
| 3388 | + "checkin_type": "QR code", | ||
| 3389 | + "location": { | ||
| 3390 | + "name": "大雁塔文化空间", | ||
| 3391 | + "coordinates": "30.010222,103.940968" | ||
| 3392 | + }, | ||
| 3393 | + "staff_id": null, | ||
| 3394 | + "status": "successful", | ||
| 3395 | + "notes": "提前到达", | ||
| 3396 | + "is_late": true | ||
| 3397 | + }, | ||
| 3398 | + { | ||
| 3399 | + "id": "C0232", | ||
| 3400 | + "activity_id": "A0027", | ||
| 3401 | + "user_id": "U0006", | ||
| 3402 | + "registration_id": "R0424", | ||
| 3403 | + "checkin_time": "2025-04-16 05:08:05", | ||
| 3404 | + "checkin_type": "QR code", | ||
| 3405 | + "location": { | ||
| 3406 | + "name": "大雁塔文化空间", | ||
| 3407 | + "coordinates": "33.278353,101.387988" | ||
| 3408 | + }, | ||
| 3409 | + "staff_id": null, | ||
| 3410 | + "status": "successful", | ||
| 3411 | + "notes": "", | ||
| 3412 | + "is_late": false | ||
| 3413 | + }, | ||
| 3414 | + { | ||
| 3415 | + "id": "C0233", | ||
| 3416 | + "activity_id": "A0030", | ||
| 3417 | + "user_id": "U0022", | ||
| 3418 | + "registration_id": "R0441", | ||
| 3419 | + "checkin_time": "2025-03-24 06:13:41", | ||
| 3420 | + "checkin_type": "QR code", | ||
| 3421 | + "location": { | ||
| 3422 | + "name": "大雁塔文化空间", | ||
| 3423 | + "coordinates": "28.787895,119.435720" | ||
| 3424 | + }, | ||
| 3425 | + "staff_id": null, | ||
| 3426 | + "status": "successful", | ||
| 3427 | + "notes": "按时到达", | ||
| 3428 | + "is_late": false | ||
| 3429 | + }, | ||
| 3430 | + { | ||
| 3431 | + "id": "C0234", | ||
| 3432 | + "activity_id": "A0030", | ||
| 3433 | + "user_id": "U0031", | ||
| 3434 | + "registration_id": "R0442", | ||
| 3435 | + "checkin_time": "2025-03-24 06:14:40", | ||
| 3436 | + "checkin_type": "manual", | ||
| 3437 | + "location": { | ||
| 3438 | + "name": "大雁塔文化空间", | ||
| 3439 | + "coordinates": "38.127912,104.147554" | ||
| 3440 | + }, | ||
| 3441 | + "staff_id": "O0005", | ||
| 3442 | + "status": "successful", | ||
| 3443 | + "notes": "", | ||
| 3444 | + "is_late": false | ||
| 3445 | + }, | ||
| 3446 | + { | ||
| 3447 | + "id": "C0235", | ||
| 3448 | + "activity_id": "A0030", | ||
| 3449 | + "user_id": "U0003", | ||
| 3450 | + "registration_id": "R0443", | ||
| 3451 | + "checkin_time": "2025-03-24 06:12:05", | ||
| 3452 | + "checkin_type": "QR code", | ||
| 3453 | + "location": { | ||
| 3454 | + "name": "大雁塔文化空间", | ||
| 3455 | + "coordinates": "36.552893,123.319240" | ||
| 3456 | + }, | ||
| 3457 | + "staff_id": null, | ||
| 3458 | + "status": "successful", | ||
| 3459 | + "notes": "", | ||
| 3460 | + "is_late": false | ||
| 3461 | + }, | ||
| 3462 | + { | ||
| 3463 | + "id": "C0236", | ||
| 3464 | + "activity_id": "A0030", | ||
| 3465 | + "user_id": "U0030", | ||
| 3466 | + "registration_id": "R0444", | ||
| 3467 | + "checkin_time": "2025-03-24 06:35:57", | ||
| 3468 | + "checkin_type": "QR code", | ||
| 3469 | + "location": { | ||
| 3470 | + "name": "大雁塔文化空间", | ||
| 3471 | + "coordinates": "37.606920,110.862144" | ||
| 3472 | + }, | ||
| 3473 | + "staff_id": null, | ||
| 3474 | + "status": "successful", | ||
| 3475 | + "notes": "", | ||
| 3476 | + "is_late": false | ||
| 3477 | + }, | ||
| 3478 | + { | ||
| 3479 | + "id": "C0237", | ||
| 3480 | + "activity_id": "A0030", | ||
| 3481 | + "user_id": "U0028", | ||
| 3482 | + "registration_id": "R0445", | ||
| 3483 | + "checkin_time": "2025-03-24 06:21:00", | ||
| 3484 | + "checkin_type": "manual", | ||
| 3485 | + "location": { | ||
| 3486 | + "name": "大雁塔文化空间", | ||
| 3487 | + "coordinates": "36.680083,106.083682" | ||
| 3488 | + }, | ||
| 3489 | + "staff_id": "O0005", | ||
| 3490 | + "status": "successful", | ||
| 3491 | + "notes": "", | ||
| 3492 | + "is_late": true | ||
| 3493 | + }, | ||
| 3494 | + { | ||
| 3495 | + "id": "C0238", | ||
| 3496 | + "activity_id": "A0030", | ||
| 3497 | + "user_id": "U0007", | ||
| 3498 | + "registration_id": "R0446", | ||
| 3499 | + "checkin_time": "2025-03-24 06:14:08", | ||
| 3500 | + "checkin_type": "QR code", | ||
| 3501 | + "location": { | ||
| 3502 | + "name": "大雁塔文化空间", | ||
| 3503 | + "coordinates": "39.916319,120.798035" | ||
| 3504 | + }, | ||
| 3505 | + "staff_id": null, | ||
| 3506 | + "status": "failed", | ||
| 3507 | + "notes": "未携带所需材料", | ||
| 3508 | + "is_late": false | ||
| 3509 | + }, | ||
| 3510 | + { | ||
| 3511 | + "id": "C0239", | ||
| 3512 | + "activity_id": "A0030", | ||
| 3513 | + "user_id": "U0034", | ||
| 3514 | + "registration_id": "R0447", | ||
| 3515 | + "checkin_time": "2025-03-24 06:21:39", | ||
| 3516 | + "checkin_type": "manual", | ||
| 3517 | + "location": { | ||
| 3518 | + "name": "大雁塔文化空间", | ||
| 3519 | + "coordinates": "35.329186,107.028931" | ||
| 3520 | + }, | ||
| 3521 | + "staff_id": "O0005", | ||
| 3522 | + "status": "successful", | ||
| 3523 | + "notes": "", | ||
| 3524 | + "is_late": false | ||
| 3525 | + }, | ||
| 3526 | + { | ||
| 3527 | + "id": "C0240", | ||
| 3528 | + "activity_id": "A0030", | ||
| 3529 | + "user_id": "U0032", | ||
| 3530 | + "registration_id": "R0449", | ||
| 3531 | + "checkin_time": "2025-03-24 06:19:22", | ||
| 3532 | + "checkin_type": "QR code", | ||
| 3533 | + "location": { | ||
| 3534 | + "name": "大雁塔文化空间", | ||
| 3535 | + "coordinates": "30.944494,124.919253" | ||
| 3536 | + }, | ||
| 3537 | + "staff_id": null, | ||
| 3538 | + "status": "failed", | ||
| 3539 | + "notes": "迟到超过30分钟", | ||
| 3540 | + "is_late": false | ||
| 3541 | + }, | ||
| 3542 | + { | ||
| 3543 | + "id": "C0241", | ||
| 3544 | + "activity_id": "A0030", | ||
| 3545 | + "user_id": "U0016", | ||
| 3546 | + "registration_id": "R0450", | ||
| 3547 | + "checkin_time": "2025-03-24 06:31:18", | ||
| 3548 | + "checkin_type": "self-service", | ||
| 3549 | + "location": { | ||
| 3550 | + "name": "大雁塔文化空间", | ||
| 3551 | + "coordinates": "30.156234,121.488007" | ||
| 3552 | + }, | ||
| 3553 | + "staff_id": null, | ||
| 3554 | + "status": "failed", | ||
| 3555 | + "notes": "网络连接不稳定", | ||
| 3556 | + "is_late": false | ||
| 3557 | + }, | ||
| 3558 | + { | ||
| 3559 | + "id": "C0242", | ||
| 3560 | + "activity_id": "A0030", | ||
| 3561 | + "user_id": "U0002", | ||
| 3562 | + "registration_id": "R0451", | ||
| 3563 | + "checkin_time": "2025-03-24 06:32:07", | ||
| 3564 | + "checkin_type": "QR code", | ||
| 3565 | + "location": { | ||
| 3566 | + "name": "大雁塔文化空间", | ||
| 3567 | + "coordinates": "36.425545,115.307617" | ||
| 3568 | + }, | ||
| 3569 | + "staff_id": null, | ||
| 3570 | + "status": "successful", | ||
| 3571 | + "notes": "", | ||
| 3572 | + "is_late": false | ||
| 3573 | + }, | ||
| 3574 | + { | ||
| 3575 | + "id": "C0243", | ||
| 3576 | + "activity_id": "A0030", | ||
| 3577 | + "user_id": "U0029", | ||
| 3578 | + "registration_id": "R0453", | ||
| 3579 | + "checkin_time": "2025-03-24 06:04:37", | ||
| 3580 | + "checkin_type": "self-service", | ||
| 3581 | + "location": { | ||
| 3582 | + "name": "大雁塔文化空间", | ||
| 3583 | + "coordinates": "30.531905,106.376309" | ||
| 3584 | + }, | ||
| 3585 | + "staff_id": null, | ||
| 3586 | + "status": "successful", | ||
| 3587 | + "notes": "", | ||
| 3588 | + "is_late": false | ||
| 3589 | + }, | ||
| 3590 | + { | ||
| 3591 | + "id": "C0244", | ||
| 3592 | + "activity_id": "A0030", | ||
| 3593 | + "user_id": "U0038", | ||
| 3594 | + "registration_id": "R0454", | ||
| 3595 | + "checkin_time": "2025-03-24 06:16:33", | ||
| 3596 | + "checkin_type": "self-service", | ||
| 3597 | + "location": { | ||
| 3598 | + "name": "大雁塔文化空间", | ||
| 3599 | + "coordinates": "30.017986,114.083724" | ||
| 3600 | + }, | ||
| 3601 | + "staff_id": null, | ||
| 3602 | + "status": "successful", | ||
| 3603 | + "notes": "", | ||
| 3604 | + "is_late": true | ||
| 3605 | + }, | ||
| 3606 | + { | ||
| 3607 | + "id": "C0245", | ||
| 3608 | + "activity_id": "A0030", | ||
| 3609 | + "user_id": "U0021", | ||
| 3610 | + "registration_id": "R0455", | ||
| 3611 | + "checkin_time": "2025-03-24 06:11:23", | ||
| 3612 | + "checkin_type": "QR code", | ||
| 3613 | + "location": { | ||
| 3614 | + "name": "大雁塔文化空间", | ||
| 3615 | + "coordinates": "27.571855,119.718238" | ||
| 3616 | + }, | ||
| 3617 | + "staff_id": null, | ||
| 3618 | + "status": "successful", | ||
| 3619 | + "notes": "", | ||
| 3620 | + "is_late": false | ||
| 3621 | + }, | ||
| 3622 | + { | ||
| 3623 | + "id": "C0246", | ||
| 3624 | + "activity_id": "A0030", | ||
| 3625 | + "user_id": "U0027", | ||
| 3626 | + "registration_id": "R0456", | ||
| 3627 | + "checkin_time": "2025-03-24 06:24:43", | ||
| 3628 | + "checkin_type": "QR code", | ||
| 3629 | + "location": { | ||
| 3630 | + "name": "大雁塔文化空间", | ||
| 3631 | + "coordinates": "38.706085,113.113853" | ||
| 3632 | + }, | ||
| 3633 | + "staff_id": null, | ||
| 3634 | + "status": "successful", | ||
| 3635 | + "notes": "", | ||
| 3636 | + "is_late": false | ||
| 3637 | + }, | ||
| 3638 | + { | ||
| 3639 | + "id": "C0247", | ||
| 3640 | + "activity_id": "A0030", | ||
| 3641 | + "user_id": "U0012", | ||
| 3642 | + "registration_id": "R0457", | ||
| 3643 | + "checkin_time": "2025-03-24 06:31:03", | ||
| 3644 | + "checkin_type": "manual", | ||
| 3645 | + "location": { | ||
| 3646 | + "name": "大雁塔文化空间", | ||
| 3647 | + "coordinates": "36.627228,124.621240" | ||
| 3648 | + }, | ||
| 3649 | + "staff_id": "O0005", | ||
| 3650 | + "status": "successful", | ||
| 3651 | + "notes": "", | ||
| 3652 | + "is_late": false | ||
| 3653 | + }, | ||
| 3654 | + { | ||
| 3655 | + "id": "C0248", | ||
| 3656 | + "activity_id": "A0030", | ||
| 3657 | + "user_id": "U0009", | ||
| 3658 | + "registration_id": "R0458", | ||
| 3659 | + "checkin_time": "2025-03-24 06:24:40", | ||
| 3660 | + "checkin_type": "QR code", | ||
| 3661 | + "location": { | ||
| 3662 | + "name": "大雁塔文化空间", | ||
| 3663 | + "coordinates": "28.284668,120.174935" | ||
| 3664 | + }, | ||
| 3665 | + "staff_id": null, | ||
| 3666 | + "status": "successful", | ||
| 3667 | + "notes": "", | ||
| 3668 | + "is_late": false | ||
| 3669 | + }, | ||
| 3670 | + { | ||
| 3671 | + "id": "C0249", | ||
| 3672 | + "activity_id": "A0030", | ||
| 3673 | + "user_id": "U0035", | ||
| 3674 | + "registration_id": "R0459", | ||
| 3675 | + "checkin_time": "2025-03-24 06:22:22", | ||
| 3676 | + "checkin_type": "QR code", | ||
| 3677 | + "location": { | ||
| 3678 | + "name": "大雁塔文化空间", | ||
| 3679 | + "coordinates": "25.338185,120.506832" | ||
| 3680 | + }, | ||
| 3681 | + "staff_id": null, | ||
| 3682 | + "status": "successful", | ||
| 3683 | + "notes": "提前到达", | ||
| 3684 | + "is_late": true | ||
| 3685 | + }, | ||
| 3686 | + { | ||
| 3687 | + "id": "C0250", | ||
| 3688 | + "activity_id": "A0030", | ||
| 3689 | + "user_id": "U0036", | ||
| 3690 | + "registration_id": "R0460", | ||
| 3691 | + "checkin_time": "2025-03-24 06:10:36", | ||
| 3692 | + "checkin_type": "QR code", | ||
| 3693 | + "location": { | ||
| 3694 | + "name": "大雁塔文化空间", | ||
| 3695 | + "coordinates": "39.576489,123.708963" | ||
| 3696 | + }, | ||
| 3697 | + "staff_id": null, | ||
| 3698 | + "status": "successful", | ||
| 3699 | + "notes": "", | ||
| 3700 | + "is_late": false | ||
| 3701 | + }, | ||
| 3702 | + { | ||
| 3703 | + "id": "C0251", | ||
| 3704 | + "activity_id": "A0030", | ||
| 3705 | + "user_id": "U0010", | ||
| 3706 | + "registration_id": "R0461", | ||
| 3707 | + "checkin_time": "2025-03-24 06:30:17", | ||
| 3708 | + "checkin_type": "QR code", | ||
| 3709 | + "location": { | ||
| 3710 | + "name": "大雁塔文化空间", | ||
| 3711 | + "coordinates": "25.560215,113.066388" | ||
| 3712 | + }, | ||
| 3713 | + "staff_id": null, | ||
| 3714 | + "status": "successful", | ||
| 3715 | + "notes": "", | ||
| 3716 | + "is_late": false | ||
| 3717 | + }, | ||
| 3718 | + { | ||
| 3719 | + "id": "C0252", | ||
| 3720 | + "activity_id": "A0030", | ||
| 3721 | + "user_id": "U0011", | ||
| 3722 | + "registration_id": "R0462", | ||
| 3723 | + "checkin_time": "2025-03-24 06:53:26", | ||
| 3724 | + "checkin_type": "QR code", | ||
| 3725 | + "location": { | ||
| 3726 | + "name": "大雁塔文化空间", | ||
| 3727 | + "coordinates": "24.201619,102.148571" | ||
| 3728 | + }, | ||
| 3729 | + "staff_id": null, | ||
| 3730 | + "status": "successful", | ||
| 3731 | + "notes": "热情参与讨论", | ||
| 3732 | + "is_late": true | ||
| 3733 | + }, | ||
| 3734 | + { | ||
| 3735 | + "id": "C0253", | ||
| 3736 | + "activity_id": "A0030", | ||
| 3737 | + "user_id": "U0040", | ||
| 3738 | + "registration_id": "R0464", | ||
| 3739 | + "checkin_time": "2025-03-24 06:28:18", | ||
| 3740 | + "checkin_type": "manual", | ||
| 3741 | + "location": { | ||
| 3742 | + "name": "大雁塔文化空间", | ||
| 3743 | + "coordinates": "27.166876,110.472657" | ||
| 3744 | + }, | ||
| 3745 | + "staff_id": "O0005", | ||
| 3746 | + "status": "successful", | ||
| 3747 | + "notes": "准备充分", | ||
| 3748 | + "is_late": false | ||
| 3749 | + }, | ||
| 3750 | + { | ||
| 3751 | + "id": "C0254", | ||
| 3752 | + "activity_id": "A0030", | ||
| 3753 | + "user_id": "U0005", | ||
| 3754 | + "registration_id": "R0465", | ||
| 3755 | + "checkin_time": "2025-03-24 06:16:32", | ||
| 3756 | + "checkin_type": "QR code", | ||
| 3757 | + "location": { | ||
| 3758 | + "name": "大雁塔文化空间", | ||
| 3759 | + "coordinates": "39.765965,102.449461" | ||
| 3760 | + }, | ||
| 3761 | + "staff_id": null, | ||
| 3762 | + "status": "successful", | ||
| 3763 | + "notes": "准备充分", | ||
| 3764 | + "is_late": false | ||
| 3765 | + }, | ||
| 3766 | + { | ||
| 3767 | + "id": "C0255", | ||
| 3768 | + "activity_id": "A0030", | ||
| 3769 | + "user_id": "U0017", | ||
| 3770 | + "registration_id": "R0466", | ||
| 3771 | + "checkin_time": "2025-03-24 06:26:07", | ||
| 3772 | + "checkin_type": "manual", | ||
| 3773 | + "location": { | ||
| 3774 | + "name": "大雁塔文化空间", | ||
| 3775 | + "coordinates": "35.381179,100.310767" | ||
| 3776 | + }, | ||
| 3777 | + "staff_id": "O0005", | ||
| 3778 | + "status": "successful", | ||
| 3779 | + "notes": "", | ||
| 3780 | + "is_late": true | ||
| 3781 | + }, | ||
| 3782 | + { | ||
| 3783 | + "id": "C0256", | ||
| 3784 | + "activity_id": "A0030", | ||
| 3785 | + "user_id": "U0006", | ||
| 3786 | + "registration_id": "R0467", | ||
| 3787 | + "checkin_time": "2025-03-24 06:08:21", | ||
| 3788 | + "checkin_type": "QR code", | ||
| 3789 | + "location": { | ||
| 3790 | + "name": "大雁塔文化空间", | ||
| 3791 | + "coordinates": "30.564468,110.716545" | ||
| 3792 | + }, | ||
| 3793 | + "staff_id": null, | ||
| 3794 | + "status": "successful", | ||
| 3795 | + "notes": "", | ||
| 3796 | + "is_late": false | ||
| 3797 | + }, | ||
| 3798 | + { | ||
| 3799 | + "id": "C0257", | ||
| 3800 | + "activity_id": "A0030", | ||
| 3801 | + "user_id": "U0013", | ||
| 3802 | + "registration_id": "R0468", | ||
| 3803 | + "checkin_time": "2025-03-24 06:34:50", | ||
| 3804 | + "checkin_type": "QR code", | ||
| 3805 | + "location": { | ||
| 3806 | + "name": "大雁塔文化空间", | ||
| 3807 | + "coordinates": "38.552870,102.806985" | ||
| 3808 | + }, | ||
| 3809 | + "staff_id": null, | ||
| 3810 | + "status": "successful", | ||
| 3811 | + "notes": "", | ||
| 3812 | + "is_late": false | ||
| 3813 | + }, | ||
| 3814 | + { | ||
| 3815 | + "id": "C0258", | ||
| 3816 | + "activity_id": "A0030", | ||
| 3817 | + "user_id": "U0014", | ||
| 3818 | + "registration_id": "R0469", | ||
| 3819 | + "checkin_time": "2025-03-24 06:11:44", | ||
| 3820 | + "checkin_type": "manual", | ||
| 3821 | + "location": { | ||
| 3822 | + "name": "大雁塔文化空间", | ||
| 3823 | + "coordinates": "28.615959,124.683004" | ||
| 3824 | + }, | ||
| 3825 | + "staff_id": "O0005", | ||
| 3826 | + "status": "successful", | ||
| 3827 | + "notes": "", | ||
| 3828 | + "is_late": false | ||
| 3829 | + }, | ||
| 3830 | + { | ||
| 3831 | + "id": "C0259", | ||
| 3832 | + "activity_id": "A0030", | ||
| 3833 | + "user_id": "U0024", | ||
| 3834 | + "registration_id": "R0470", | ||
| 3835 | + "checkin_time": "2025-03-24 06:21:59", | ||
| 3836 | + "checkin_type": "QR code", | ||
| 3837 | + "location": { | ||
| 3838 | + "name": "大雁塔文化空间", | ||
| 3839 | + "coordinates": "32.650324,122.567416" | ||
| 3840 | + }, | ||
| 3841 | + "staff_id": null, | ||
| 3842 | + "status": "successful", | ||
| 3843 | + "notes": "", | ||
| 3844 | + "is_late": false | ||
| 3845 | + }, | ||
| 3846 | + { | ||
| 3847 | + "id": "C0260", | ||
| 3848 | + "activity_id": "A0030", | ||
| 3849 | + "user_id": "U0023", | ||
| 3850 | + "registration_id": "R0471", | ||
| 3851 | + "checkin_time": "2025-03-24 06:19:00", | ||
| 3852 | + "checkin_type": "QR code", | ||
| 3853 | + "location": { | ||
| 3854 | + "name": "大雁塔文化空间", | ||
| 3855 | + "coordinates": "33.643347,118.704871" | ||
| 3856 | + }, | ||
| 3857 | + "staff_id": null, | ||
| 3858 | + "status": "successful", | ||
| 3859 | + "notes": "", | ||
| 3860 | + "is_late": false | ||
| 3861 | + }, | ||
| 3862 | + { | ||
| 3863 | + "id": "C0261", | ||
| 3864 | + "activity_id": "A0030", | ||
| 3865 | + "user_id": "U0018", | ||
| 3866 | + "registration_id": "R0472", | ||
| 3867 | + "checkin_time": "2025-03-24 06:11:01", | ||
| 3868 | + "checkin_type": "QR code", | ||
| 3869 | + "location": { | ||
| 3870 | + "name": "大雁塔文化空间", | ||
| 3871 | + "coordinates": "29.846041,119.659244" | ||
| 3872 | + }, | ||
| 3873 | + "staff_id": null, | ||
| 3874 | + "status": "successful", | ||
| 3875 | + "notes": "热情参与讨论", | ||
| 3876 | + "is_late": false | ||
| 3877 | + }, | ||
| 3878 | + { | ||
| 3879 | + "id": "C0262", | ||
| 3880 | + "activity_id": "A0030", | ||
| 3881 | + "user_id": "U0020", | ||
| 3882 | + "registration_id": "R0474", | ||
| 3883 | + "checkin_time": "2025-03-24 06:35:07", | ||
| 3884 | + "checkin_type": "QR code", | ||
| 3885 | + "location": { | ||
| 3886 | + "name": "大雁塔文化空间", | ||
| 3887 | + "coordinates": "25.709511,106.061221" | ||
| 3888 | + }, | ||
| 3889 | + "staff_id": null, | ||
| 3890 | + "status": "successful", | ||
| 3891 | + "notes": "", | ||
| 3892 | + "is_late": true | ||
| 3893 | + }, | ||
| 3894 | + { | ||
| 3895 | + "id": "C0263", | ||
| 3896 | + "activity_id": "A0030", | ||
| 3897 | + "user_id": "U0008", | ||
| 3898 | + "registration_id": "R0475", | ||
| 3899 | + "checkin_time": "2025-03-24 06:39:17", | ||
| 3900 | + "checkin_type": "manual", | ||
| 3901 | + "location": { | ||
| 3902 | + "name": "大雁塔文化空间", | ||
| 3903 | + "coordinates": "32.647541,101.108562" | ||
| 3904 | + }, | ||
| 3905 | + "staff_id": "O0005", | ||
| 3906 | + "status": "successful", | ||
| 3907 | + "notes": "", | ||
| 3908 | + "is_late": false | ||
| 3909 | + }, | ||
| 3910 | + { | ||
| 3911 | + "id": "C0264", | ||
| 3912 | + "activity_id": "A0030", | ||
| 3913 | + "user_id": "U0039", | ||
| 3914 | + "registration_id": "R0476", | ||
| 3915 | + "checkin_time": "2025-03-24 06:08:49", | ||
| 3916 | + "checkin_type": "QR code", | ||
| 3917 | + "location": { | ||
| 3918 | + "name": "大雁塔文化空间", | ||
| 3919 | + "coordinates": "23.752600,113.568037" | ||
| 3920 | + }, | ||
| 3921 | + "staff_id": null, | ||
| 3922 | + "status": "successful", | ||
| 3923 | + "notes": "准备充分", | ||
| 3924 | + "is_late": false | ||
| 3925 | + }, | ||
| 3926 | + { | ||
| 3927 | + "id": "C0265", | ||
| 3928 | + "activity_id": "A0030", | ||
| 3929 | + "user_id": "U0025", | ||
| 3930 | + "registration_id": "R0477", | ||
| 3931 | + "checkin_time": "2025-03-24 06:14:21", | ||
| 3932 | + "checkin_type": "QR code", | ||
| 3933 | + "location": { | ||
| 3934 | + "name": "大雁塔文化空间", | ||
| 3935 | + "coordinates": "27.951622,124.171448" | ||
| 3936 | + }, | ||
| 3937 | + "staff_id": null, | ||
| 3938 | + "status": "successful", | ||
| 3939 | + "notes": "", | ||
| 3940 | + "is_late": false | ||
| 3941 | + }, | ||
| 3942 | + { | ||
| 3943 | + "id": "C0266", | ||
| 3944 | + "activity_id": "A0030", | ||
| 3945 | + "user_id": "U0004", | ||
| 3946 | + "registration_id": "R0478", | ||
| 3947 | + "checkin_time": "2025-03-24 06:28:35", | ||
| 3948 | + "checkin_type": "QR code", | ||
| 3949 | + "location": { | ||
| 3950 | + "name": "大雁塔文化空间", | ||
| 3951 | + "coordinates": "39.931468,121.020079" | ||
| 3952 | + }, | ||
| 3953 | + "staff_id": null, | ||
| 3954 | + "status": "successful", | ||
| 3955 | + "notes": "准备充分", | ||
| 3956 | + "is_late": false | ||
| 3957 | + }, | ||
| 3958 | + { | ||
| 3959 | + "id": "C0267", | ||
| 3960 | + "activity_id": "A0030", | ||
| 3961 | + "user_id": "U0037", | ||
| 3962 | + "registration_id": "R0479", | ||
| 3963 | + "checkin_time": "2025-03-24 06:07:58", | ||
| 3964 | + "checkin_type": "manual", | ||
| 3965 | + "location": { | ||
| 3966 | + "name": "大雁塔文化空间", | ||
| 3967 | + "coordinates": "34.700797,103.276532" | ||
| 3968 | + }, | ||
| 3969 | + "staff_id": "O0005", | ||
| 3970 | + "status": "successful", | ||
| 3971 | + "notes": "", | ||
| 3972 | + "is_late": false | ||
| 3973 | + }, | ||
| 3974 | + { | ||
| 3975 | + "id": "C0268", | ||
| 3976 | + "activity_id": "A0030", | ||
| 3977 | + "user_id": "U0001", | ||
| 3978 | + "registration_id": "R0480", | ||
| 3979 | + "checkin_time": "2025-03-24 06:28:46", | ||
| 3980 | + "checkin_type": "QR code", | ||
| 3981 | + "location": { | ||
| 3982 | + "name": "大雁塔文化空间", | ||
| 3983 | + "coordinates": "39.529239,117.178983" | ||
| 3984 | + }, | ||
| 3985 | + "staff_id": null, | ||
| 3986 | + "status": "successful", | ||
| 3987 | + "notes": "带了书本", | ||
| 3988 | + "is_late": false | ||
| 3989 | + } | ||
| 3990 | +] | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
src/data/example.json
0 → 100644
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
| ... | @@ -2,18 +2,1293 @@ | ... | @@ -2,18 +2,1293 @@ |
| 2 | "users": [ | 2 | "users": [ |
| 3 | { | 3 | { |
| 4 | "id": "U0001", | 4 | "id": "U0001", |
| 5 | - "name": "张三", | 5 | + "username": "philosopher915", |
| 6 | - "email": "zhangsan@example.com", | 6 | + "name": "陈静", |
| 7 | - "avatar": "/assets/images/avatars/default.png", | 7 | + "avatar": "https://randomuser.me/api/portraits/women/33.jpg", |
| 8 | - "role": "member", | 8 | + "phone": "15242619085", |
| 9 | - "created_at": "2024-01-01 00:00:00", | 9 | + "email": "philosopher915@outlook.com", |
| 10 | - "updated_at": "2024-01-01 00:00:00", | 10 | + "gender": "男", |
| 11 | - "last_login": "2024-04-17 10:00:00", | 11 | + "age_group": "31-35岁", |
| 12 | - "status": "active", | 12 | + "education": "高中", |
| 13 | - "preferences": { | 13 | + "registration_date": "2024-10-15 07:11:49", |
| 14 | - "notification_email": true, | 14 | + "location": "南京", |
| 15 | - "notification_web": true | 15 | + "bio": "观点,交流,生活,发现,认知,情感,情感,交流,兴趣", |
| 16 | - } | 16 | + "interests": [ |
| 17 | + "历史", | ||
| 18 | + "古典文学", | ||
| 19 | + "教育", | ||
| 20 | + "社会科学", | ||
| 21 | + "政治" | ||
| 22 | + ], | ||
| 23 | + "is_organizer": false, | ||
| 24 | + "organization": null, | ||
| 25 | + "activity_count": 10, | ||
| 26 | + "follow_count": 7, | ||
| 27 | + "followers_count": 13, | ||
| 28 | + "is_new_user": false | ||
| 29 | + }, | ||
| 30 | + { | ||
| 31 | + "id": "U0002", | ||
| 32 | + "username": "bibliophile888", | ||
| 33 | + "name": "林杰", | ||
| 34 | + "avatar": "https://randomuser.me/api/portraits/men/71.jpg", | ||
| 35 | + "phone": "18639598797", | ||
| 36 | + "email": "bibliophile888@foxmail.com", | ||
| 37 | + "gender": "女", | ||
| 38 | + "age_group": "31-35岁", | ||
| 39 | + "education": "本科", | ||
| 40 | + "registration_date": "2023-11-12 07:11:49", | ||
| 41 | + "location": "西安", | ||
| 42 | + "bio": "生活,未来,读书,思考,知识,思考,感悟,视野,思想,坚持,热爱,工作,沟通,坚持,知识,生活,理解,坚持", | ||
| 43 | + "interests": [ | ||
| 44 | + "推理", | ||
| 45 | + "诗歌", | ||
| 46 | + "音乐", | ||
| 47 | + "政治", | ||
| 48 | + "旅行" | ||
| 49 | + ], | ||
| 50 | + "is_organizer": false, | ||
| 51 | + "organization": null, | ||
| 52 | + "activity_count": 9, | ||
| 53 | + "follow_count": 37, | ||
| 54 | + "followers_count": 14, | ||
| 55 | + "is_new_user": false | ||
| 56 | + }, | ||
| 57 | + { | ||
| 58 | + "id": "U0003", | ||
| 59 | + "username": "sage560", | ||
| 60 | + "name": "胡秀英", | ||
| 61 | + "avatar": "https://randomuser.me/api/portraits/men/25.jpg", | ||
| 62 | + "phone": "13039456917", | ||
| 63 | + "email": "sage560@gmail.com", | ||
| 64 | + "gender": "女", | ||
| 65 | + "age_group": "41-50岁", | ||
| 66 | + "education": "硕士", | ||
| 67 | + "registration_date": "2024-03-12 07:11:49", | ||
| 68 | + "location": "北京", | ||
| 69 | + "bio": "思想,学习,沟通,坚持,启发,认知,经验,创造,理解,观点,精神,认知,思想,视野,探索,知识,文化,", | ||
| 70 | + "interests": [ | ||
| 71 | + "艺术", | ||
| 72 | + "哲学", | ||
| 73 | + "旅行", | ||
| 74 | + "政治", | ||
| 75 | + "教育" | ||
| 76 | + ], | ||
| 77 | + "is_organizer": false, | ||
| 78 | + "organization": null, | ||
| 79 | + "activity_count": 5, | ||
| 80 | + "follow_count": 13, | ||
| 81 | + "followers_count": 15, | ||
| 82 | + "is_new_user": false | ||
| 83 | + }, | ||
| 84 | + { | ||
| 85 | + "id": "U0004", | ||
| 86 | + "username": "reader777", | ||
| 87 | + "name": "陈勇", | ||
| 88 | + "avatar": "https://randomuser.me/api/portraits/men/92.jpg", | ||
| 89 | + "phone": "13678802250", | ||
| 90 | + "email": "reader777@163.com", | ||
| 91 | + "gender": "女", | ||
| 92 | + "age_group": "36-40岁", | ||
| 93 | + "education": "硕士", | ||
| 94 | + "registration_date": "2023-05-28 07:11:49", | ||
| 95 | + "location": "重庆", | ||
| 96 | + "bio": "生活,教育,分享,交流,启发,观点,沟通,情感,观点,发现,认知,价值,视野", | ||
| 97 | + "interests": [ | ||
| 98 | + "旅行", | ||
| 99 | + "外国文学", | ||
| 100 | + "古典文学", | ||
| 101 | + "推理", | ||
| 102 | + "经济" | ||
| 103 | + ], | ||
| 104 | + "is_organizer": false, | ||
| 105 | + "organization": null, | ||
| 106 | + "activity_count": 9, | ||
| 107 | + "follow_count": 18, | ||
| 108 | + "followers_count": 22, | ||
| 109 | + "is_new_user": false | ||
| 110 | + }, | ||
| 111 | + { | ||
| 112 | + "id": "U0005", | ||
| 113 | + "username": "scholar823", | ||
| 114 | + "name": "李霞", | ||
| 115 | + "avatar": "https://randomuser.me/api/portraits/women/24.jpg", | ||
| 116 | + "phone": "15765356756", | ||
| 117 | + "email": "scholar823@outlook.com", | ||
| 118 | + "gender": "女", | ||
| 119 | + "age_group": "41-50岁", | ||
| 120 | + "education": "高中", | ||
| 121 | + "registration_date": "2023-07-05 07:11:49", | ||
| 122 | + "location": "北京", | ||
| 123 | + "bio": "思考,兴趣,观点,兴趣,观点,经验,观点,观点,文化,智慧", | ||
| 124 | + "interests": [ | ||
| 125 | + "艺术", | ||
| 126 | + "旅行", | ||
| 127 | + "古典文学", | ||
| 128 | + "音乐", | ||
| 129 | + "外国文学" | ||
| 130 | + ], | ||
| 131 | + "is_organizer": false, | ||
| 132 | + "organization": null, | ||
| 133 | + "activity_count": 3, | ||
| 134 | + "follow_count": 2, | ||
| 135 | + "followers_count": 27, | ||
| 136 | + "is_new_user": false | ||
| 137 | + }, | ||
| 138 | + { | ||
| 139 | + "id": "U0006", | ||
| 140 | + "username": "thinker926", | ||
| 141 | + "name": "胡超", | ||
| 142 | + "avatar": "https://randomuser.me/api/portraits/men/40.jpg", | ||
| 143 | + "phone": "15926853615", | ||
| 144 | + "email": "thinker926@126.com", | ||
| 145 | + "gender": "女", | ||
| 146 | + "age_group": "36-40岁", | ||
| 147 | + "education": "博士", | ||
| 148 | + "registration_date": "2025-04-10 07:11:49", | ||
| 149 | + "location": "北京", | ||
| 150 | + "bio": "情感,未来,发现,创造,灵感,灵感,读书,灵感,灵感", | ||
| 151 | + "interests": [ | ||
| 152 | + "心理学", | ||
| 153 | + "哲学", | ||
| 154 | + "管理", | ||
| 155 | + "科技" | ||
| 156 | + ], | ||
| 157 | + "is_organizer": false, | ||
| 158 | + "organization": null, | ||
| 159 | + "activity_count": 15, | ||
| 160 | + "follow_count": 10, | ||
| 161 | + "followers_count": 21, | ||
| 162 | + "is_new_user": true | ||
| 163 | + }, | ||
| 164 | + { | ||
| 165 | + "id": "U0007", | ||
| 166 | + "username": "reader206", | ||
| 167 | + "name": "何秀英", | ||
| 168 | + "avatar": "https://randomuser.me/api/portraits/men/33.jpg", | ||
| 169 | + "phone": "13028502918", | ||
| 170 | + "email": "reader206@hotmail.com", | ||
| 171 | + "gender": "女", | ||
| 172 | + "age_group": "18-24岁", | ||
| 173 | + "education": "大专", | ||
| 174 | + "registration_date": "2024-05-18 07:11:49", | ||
| 175 | + "location": "深圳", | ||
| 176 | + "bio": "坚持,文化,教育,智慧,专注,情感,探索,成长,知识,沟通,生活,认知", | ||
| 177 | + "interests": [ | ||
| 178 | + "外国文学", | ||
| 179 | + "古典文学", | ||
| 180 | + "传记", | ||
| 181 | + "科技", | ||
| 182 | + "社会科学" | ||
| 183 | + ], | ||
| 184 | + "is_organizer": false, | ||
| 185 | + "organization": null, | ||
| 186 | + "activity_count": 13, | ||
| 187 | + "follow_count": 1, | ||
| 188 | + "followers_count": 25, | ||
| 189 | + "is_new_user": false | ||
| 190 | + }, | ||
| 191 | + { | ||
| 192 | + "id": "U0008", | ||
| 193 | + "username": "reader520", | ||
| 194 | + "name": "周霞", | ||
| 195 | + "avatar": "https://randomuser.me/api/portraits/women/77.jpg", | ||
| 196 | + "phone": "13954151629", | ||
| 197 | + "email": "reader520@126.com", | ||
| 198 | + "gender": "男", | ||
| 199 | + "age_group": "31-35岁", | ||
| 200 | + "education": "本科", | ||
| 201 | + "registration_date": "2024-08-24 07:11:49", | ||
| 202 | + "location": "北京", | ||
| 203 | + "bio": "读书,专注,观点,兴趣,知识,探索,智慧,情感,理解,创造,心灵,思想,观点,创造,视野,认知,学习,文化,探索,情感,知识,视野,工作", | ||
| 204 | + "interests": [ | ||
| 205 | + "健康", | ||
| 206 | + "推理" | ||
| 207 | + ], | ||
| 208 | + "is_organizer": false, | ||
| 209 | + "organization": null, | ||
| 210 | + "activity_count": 15, | ||
| 211 | + "follow_count": 43, | ||
| 212 | + "followers_count": 16, | ||
| 213 | + "is_new_user": false | ||
| 214 | + }, | ||
| 215 | + { | ||
| 216 | + "id": "U0009", | ||
| 217 | + "username": "literati391", | ||
| 218 | + "name": "何敏", | ||
| 219 | + "avatar": "https://randomuser.me/api/portraits/women/26.jpg", | ||
| 220 | + "phone": "18778721591", | ||
| 221 | + "email": "literati391@gmail.com", | ||
| 222 | + "gender": "女", | ||
| 223 | + "age_group": "41-50岁", | ||
| 224 | + "education": "博士", | ||
| 225 | + "registration_date": "2024-08-06 07:11:49", | ||
| 226 | + "location": "重庆", | ||
| 227 | + "bio": "成长,工作,启发,文化,认知,观点,创造,感悟,学习,情感,坚持,成长,视野,思考,生活,启发,热爱,热爱", | ||
| 228 | + "interests": [ | ||
| 229 | + "健康", | ||
| 230 | + "经济", | ||
| 231 | + "科幻", | ||
| 232 | + "外国文学", | ||
| 233 | + "社会科学" | ||
| 234 | + ], | ||
| 235 | + "is_organizer": false, | ||
| 236 | + "organization": null, | ||
| 237 | + "activity_count": 5, | ||
| 238 | + "follow_count": 14, | ||
| 239 | + "followers_count": 5, | ||
| 240 | + "is_new_user": false | ||
| 241 | + }, | ||
| 242 | + { | ||
| 243 | + "id": "U0010", | ||
| 244 | + "username": "scholar137", | ||
| 245 | + "name": "黄伟", | ||
| 246 | + "avatar": "https://randomuser.me/api/portraits/women/46.jpg", | ||
| 247 | + "phone": "15554784272", | ||
| 248 | + "email": "scholar137@qq.com", | ||
| 249 | + "gender": "女", | ||
| 250 | + "age_group": "50岁以上", | ||
| 251 | + "education": "博士", | ||
| 252 | + "registration_date": "2023-04-21 07:11:49", | ||
| 253 | + "location": "深圳", | ||
| 254 | + "bio": "未来,心灵,知识,沟通,交流,感悟,未来,情感,知识,表达,理解,沟通,表达,观点,价值,工作,交流,教育,知识,发现,发现,读书,学习,认知,启发,工作,价值,智慧,沟通,启发,表达,感悟,", | ||
| 255 | + "interests": [ | ||
| 256 | + "政治", | ||
| 257 | + "经济", | ||
| 258 | + "推理" | ||
| 259 | + ], | ||
| 260 | + "is_organizer": false, | ||
| 261 | + "organization": null, | ||
| 262 | + "activity_count": 5, | ||
| 263 | + "follow_count": 44, | ||
| 264 | + "followers_count": 10, | ||
| 265 | + "is_new_user": false | ||
| 266 | + }, | ||
| 267 | + { | ||
| 268 | + "id": "U0011", | ||
| 269 | + "username": "thinker327", | ||
| 270 | + "name": "陈洋", | ||
| 271 | + "avatar": "https://randomuser.me/api/portraits/men/44.jpg", | ||
| 272 | + "phone": "13252122058", | ||
| 273 | + "email": "thinker327@gmail.com", | ||
| 274 | + "gender": "女", | ||
| 275 | + "age_group": "41-50岁", | ||
| 276 | + "education": "大专", | ||
| 277 | + "registration_date": "2024-06-27 07:11:49", | ||
| 278 | + "location": "北京", | ||
| 279 | + "bio": "工作,启发,工作,表达,发现,观点,读书,经验,沟通,探索,智慧,理解,文化,探索,兴趣,兴趣,思考,灵感,", | ||
| 280 | + "interests": [ | ||
| 281 | + "健康", | ||
| 282 | + "历史", | ||
| 283 | + "文学", | ||
| 284 | + "经济", | ||
| 285 | + "心理学" | ||
| 286 | + ], | ||
| 287 | + "is_organizer": false, | ||
| 288 | + "organization": null, | ||
| 289 | + "activity_count": 3, | ||
| 290 | + "follow_count": 15, | ||
| 291 | + "followers_count": 11, | ||
| 292 | + "is_new_user": false | ||
| 293 | + }, | ||
| 294 | + { | ||
| 295 | + "id": "U0012", | ||
| 296 | + "username": "scholar730", | ||
| 297 | + "name": "陈超", | ||
| 298 | + "avatar": "https://randomuser.me/api/portraits/men/67.jpg", | ||
| 299 | + "phone": "13152364083", | ||
| 300 | + "email": "scholar730@126.com", | ||
| 301 | + "gender": "男", | ||
| 302 | + "age_group": "41-50岁", | ||
| 303 | + "education": "博士", | ||
| 304 | + "registration_date": "2023-10-07 07:11:49", | ||
| 305 | + "location": "北京", | ||
| 306 | + "bio": "交流,探索,灵感,发现,未来,分享,专注,读书,工作,未来,思考,观点", | ||
| 307 | + "interests": [ | ||
| 308 | + "传记" | ||
| 309 | + ], | ||
| 310 | + "is_organizer": false, | ||
| 311 | + "organization": null, | ||
| 312 | + "activity_count": 2, | ||
| 313 | + "follow_count": 34, | ||
| 314 | + "followers_count": 5, | ||
| 315 | + "is_new_user": false | ||
| 316 | + }, | ||
| 317 | + { | ||
| 318 | + "id": "U0013", | ||
| 319 | + "username": "booklover923", | ||
| 320 | + "name": "黄超", | ||
| 321 | + "avatar": "https://randomuser.me/api/portraits/men/48.jpg", | ||
| 322 | + "phone": "15670614516", | ||
| 323 | + "email": "booklover923@126.com", | ||
| 324 | + "gender": "女", | ||
| 325 | + "age_group": "36-40岁", | ||
| 326 | + "education": "硕士", | ||
| 327 | + "registration_date": "2024-10-25 07:11:49", | ||
| 328 | + "location": "重庆", | ||
| 329 | + "bio": "思考,精神,经验,价值,经验,精神,知识,启发,表达,学习,思考,生活,探索,经验,坚持,创造,思想,情感,专注,精神,知识,工作,探索,知识,思想", | ||
| 330 | + "interests": [ | ||
| 331 | + "社会科学", | ||
| 332 | + "科技", | ||
| 333 | + "哲学", | ||
| 334 | + "推理", | ||
| 335 | + "心理学" | ||
| 336 | + ], | ||
| 337 | + "is_organizer": false, | ||
| 338 | + "organization": null, | ||
| 339 | + "activity_count": 3, | ||
| 340 | + "follow_count": 15, | ||
| 341 | + "followers_count": 10, | ||
| 342 | + "is_new_user": false | ||
| 343 | + }, | ||
| 344 | + { | ||
| 345 | + "id": "U0014", | ||
| 346 | + "username": "reader948", | ||
| 347 | + "name": "李敏", | ||
| 348 | + "avatar": "https://randomuser.me/api/portraits/men/85.jpg", | ||
| 349 | + "phone": "18128797547", | ||
| 350 | + "email": "reader948@qq.com", | ||
| 351 | + "gender": "女", | ||
| 352 | + "age_group": "18-24岁", | ||
| 353 | + "education": "高中", | ||
| 354 | + "registration_date": "2023-07-12 07:11:49", | ||
| 355 | + "location": "广州", | ||
| 356 | + "bio": "价值,坚持,认知,读书,灵感,探索,知识,坚持,专注,灵感,未来,文化,探索,教育,未来,教育,认知,学习,探索,教育", | ||
| 357 | + "interests": [ | ||
| 358 | + "科技", | ||
| 359 | + "政治", | ||
| 360 | + "科幻" | ||
| 361 | + ], | ||
| 362 | + "is_organizer": false, | ||
| 363 | + "organization": null, | ||
| 364 | + "activity_count": 9, | ||
| 365 | + "follow_count": 50, | ||
| 366 | + "followers_count": 9, | ||
| 367 | + "is_new_user": false | ||
| 368 | + }, | ||
| 369 | + { | ||
| 370 | + "id": "U0015", | ||
| 371 | + "username": "literati987", | ||
| 372 | + "name": "徐磊", | ||
| 373 | + "avatar": "https://randomuser.me/api/portraits/women/29.jpg", | ||
| 374 | + "phone": "15585365059", | ||
| 375 | + "email": "literati987@yahoo.com", | ||
| 376 | + "gender": "女", | ||
| 377 | + "age_group": "25-30岁", | ||
| 378 | + "education": "博士", | ||
| 379 | + "registration_date": "2024-06-18 07:11:49", | ||
| 380 | + "location": "上海", | ||
| 381 | + "bio": "理解,心灵,表达,感悟,启发,读书,文化,交流,兴趣,思想,文化,未来,分享,兴趣,启发,交流,生活,知识,专注,文化,情感,兴趣", | ||
| 382 | + "interests": [ | ||
| 383 | + "教育", | ||
| 384 | + "社会科学", | ||
| 385 | + "哲学", | ||
| 386 | + "管理", | ||
| 387 | + "古典文学" | ||
| 388 | + ], | ||
| 389 | + "is_organizer": false, | ||
| 390 | + "organization": null, | ||
| 391 | + "activity_count": 4, | ||
| 392 | + "follow_count": 40, | ||
| 393 | + "followers_count": 18, | ||
| 394 | + "is_new_user": false | ||
| 395 | + }, | ||
| 396 | + { | ||
| 397 | + "id": "U0016", | ||
| 398 | + "username": "literati913", | ||
| 399 | + "name": "刘磊", | ||
| 400 | + "avatar": "https://randomuser.me/api/portraits/men/41.jpg", | ||
| 401 | + "phone": "15126570482", | ||
| 402 | + "email": "literati913@qq.com", | ||
| 403 | + "gender": "女", | ||
| 404 | + "age_group": "36-40岁", | ||
| 405 | + "education": "本科", | ||
| 406 | + "registration_date": "2023-09-06 07:11:49", | ||
| 407 | + "location": "南京", | ||
| 408 | + "bio": "思考,未来,感悟,探索,坚持,发现,感悟,思想,学习,沟通,坚持,文化,探索,未来", | ||
| 409 | + "interests": [ | ||
| 410 | + "经济", | ||
| 411 | + "管理" | ||
| 412 | + ], | ||
| 413 | + "is_organizer": false, | ||
| 414 | + "organization": null, | ||
| 415 | + "activity_count": 10, | ||
| 416 | + "follow_count": 19, | ||
| 417 | + "followers_count": 26, | ||
| 418 | + "is_new_user": false | ||
| 419 | + }, | ||
| 420 | + { | ||
| 421 | + "id": "U0017", | ||
| 422 | + "username": "bibliophile286", | ||
| 423 | + "name": "林杰", | ||
| 424 | + "avatar": "https://randomuser.me/api/portraits/men/12.jpg", | ||
| 425 | + "phone": "18598074151", | ||
| 426 | + "email": "bibliophile286@foxmail.com", | ||
| 427 | + "gender": "男", | ||
| 428 | + "age_group": "36-40岁", | ||
| 429 | + "education": "大专", | ||
| 430 | + "registration_date": "2023-09-02 07:11:49", | ||
| 431 | + "location": "杭州", | ||
| 432 | + "bio": "兴趣,启发,坚持,观点,情感,沟通,生活,学习,交流,发现,精神", | ||
| 433 | + "interests": [ | ||
| 434 | + "文学", | ||
| 435 | + "音乐" | ||
| 436 | + ], | ||
| 437 | + "is_organizer": false, | ||
| 438 | + "organization": null, | ||
| 439 | + "activity_count": 4, | ||
| 440 | + "follow_count": 32, | ||
| 441 | + "followers_count": 12, | ||
| 442 | + "is_new_user": false | ||
| 443 | + }, | ||
| 444 | + { | ||
| 445 | + "id": "U0018", | ||
| 446 | + "username": "sage162", | ||
| 447 | + "name": "高明", | ||
| 448 | + "avatar": "https://randomuser.me/api/portraits/women/73.jpg", | ||
| 449 | + "phone": "18339690960", | ||
| 450 | + "email": "sage162@126.com", | ||
| 451 | + "gender": "女", | ||
| 452 | + "age_group": "25-30岁", | ||
| 453 | + "education": "本科", | ||
| 454 | + "registration_date": "2024-06-14 07:11:49", | ||
| 455 | + "location": "北京", | ||
| 456 | + "bio": "热爱,思想,教育,学习,启发,教育,启发,生活,专注,知识,成长,热爱,热爱,学习,思想,视野,启发,思考,认知,精神,专注,坚持,读书,教育,思想,学习,读书,价值,理解,工作", | ||
| 457 | + "interests": [ | ||
| 458 | + "社会科学", | ||
| 459 | + "历史", | ||
| 460 | + "音乐", | ||
| 461 | + "心理学" | ||
| 462 | + ], | ||
| 463 | + "is_organizer": false, | ||
| 464 | + "organization": null, | ||
| 465 | + "activity_count": 5, | ||
| 466 | + "follow_count": 37, | ||
| 467 | + "followers_count": 1, | ||
| 468 | + "is_new_user": false | ||
| 469 | + }, | ||
| 470 | + { | ||
| 471 | + "id": "U0019", | ||
| 472 | + "username": "thinker676", | ||
| 473 | + "name": "张芳", | ||
| 474 | + "avatar": "https://randomuser.me/api/portraits/men/31.jpg", | ||
| 475 | + "phone": "15710859650", | ||
| 476 | + "email": "thinker676@qq.com", | ||
| 477 | + "gender": "男", | ||
| 478 | + "age_group": "36-40岁", | ||
| 479 | + "education": "本科", | ||
| 480 | + "registration_date": "2025-03-20 07:11:49", | ||
| 481 | + "location": "上海", | ||
| 482 | + "bio": "坚持,成长,思想,情感,工作,心灵,经验,探索,分享,知识,创造,兴趣,表达,思考,分享,发现,情感,视野,思考,创造,文化,思想,", | ||
| 483 | + "interests": [ | ||
| 484 | + "教育", | ||
| 485 | + "旅行" | ||
| 486 | + ], | ||
| 487 | + "is_organizer": false, | ||
| 488 | + "organization": null, | ||
| 489 | + "activity_count": 3, | ||
| 490 | + "follow_count": 12, | ||
| 491 | + "followers_count": 8, | ||
| 492 | + "is_new_user": true | ||
| 493 | + }, | ||
| 494 | + { | ||
| 495 | + "id": "U0020", | ||
| 496 | + "username": "bibliophile942", | ||
| 497 | + "name": "杨勇", | ||
| 498 | + "avatar": "https://randomuser.me/api/portraits/men/9.jpg", | ||
| 499 | + "phone": "13970324817", | ||
| 500 | + "email": "bibliophile942@foxmail.com", | ||
| 501 | + "gender": "男", | ||
| 502 | + "age_group": "41-50岁", | ||
| 503 | + "education": "硕士", | ||
| 504 | + "registration_date": "2025-02-25 07:11:49", | ||
| 505 | + "location": "西安", | ||
| 506 | + "bio": "发现,成长,知识,智慧,理解,观点,坚持,创造,学习", | ||
| 507 | + "interests": [ | ||
| 508 | + "推理", | ||
| 509 | + "科幻", | ||
| 510 | + "诗歌", | ||
| 511 | + "管理", | ||
| 512 | + "外国文学" | ||
| 513 | + ], | ||
| 514 | + "is_organizer": false, | ||
| 515 | + "organization": null, | ||
| 516 | + "activity_count": 9, | ||
| 517 | + "follow_count": 49, | ||
| 518 | + "followers_count": 29, | ||
| 519 | + "is_new_user": false | ||
| 520 | + }, | ||
| 521 | + { | ||
| 522 | + "id": "U0021", | ||
| 523 | + "username": "bibliophile998", | ||
| 524 | + "name": "刘秀英", | ||
| 525 | + "avatar": "https://randomuser.me/api/portraits/women/17.jpg", | ||
| 526 | + "phone": "15844639209", | ||
| 527 | + "email": "bibliophile998@126.com", | ||
| 528 | + "gender": "女", | ||
| 529 | + "age_group": "31-35岁", | ||
| 530 | + "education": "硕士", | ||
| 531 | + "registration_date": "2023-12-06 07:11:49", | ||
| 532 | + "location": "武汉", | ||
| 533 | + "bio": "精神,发现,心灵,交流,视野,情感,思考,情感,坚持,发现,心灵,教育,感悟,", | ||
| 534 | + "interests": [ | ||
| 535 | + "外国文学", | ||
| 536 | + "艺术", | ||
| 537 | + "健康", | ||
| 538 | + "政治", | ||
| 539 | + "心理学" | ||
| 540 | + ], | ||
| 541 | + "is_organizer": false, | ||
| 542 | + "organization": null, | ||
| 543 | + "activity_count": 6, | ||
| 544 | + "follow_count": 17, | ||
| 545 | + "followers_count": 25, | ||
| 546 | + "is_new_user": false | ||
| 547 | + }, | ||
| 548 | + { | ||
| 549 | + "id": "U0022", | ||
| 550 | + "username": "bibliophile730", | ||
| 551 | + "name": "徐娜", | ||
| 552 | + "avatar": "https://randomuser.me/api/portraits/women/5.jpg", | ||
| 553 | + "phone": "18820345218", | ||
| 554 | + "email": "bibliophile730@foxmail.com", | ||
| 555 | + "gender": "男", | ||
| 556 | + "age_group": "36-40岁", | ||
| 557 | + "education": "硕士", | ||
| 558 | + "registration_date": "2024-09-23 07:11:49", | ||
| 559 | + "location": "北京", | ||
| 560 | + "bio": "思考,创造,感悟,思想,学习,成长,情感,生活,启发,创造,学习,理解,感悟,生活,分享,沟通,智慧,探索,学习,智慧,交流,成长,", | ||
| 561 | + "interests": [ | ||
| 562 | + "健康", | ||
| 563 | + "诗歌", | ||
| 564 | + "科幻", | ||
| 565 | + "心理学" | ||
| 566 | + ], | ||
| 567 | + "is_organizer": false, | ||
| 568 | + "organization": null, | ||
| 569 | + "activity_count": 3, | ||
| 570 | + "follow_count": 11, | ||
| 571 | + "followers_count": 3, | ||
| 572 | + "is_new_user": false | ||
| 573 | + }, | ||
| 574 | + { | ||
| 575 | + "id": "U0023", | ||
| 576 | + "username": "booklover552", | ||
| 577 | + "name": "徐娜", | ||
| 578 | + "avatar": "https://randomuser.me/api/portraits/women/54.jpg", | ||
| 579 | + "phone": "18161956034", | ||
| 580 | + "email": "booklover552@foxmail.com", | ||
| 581 | + "gender": "女", | ||
| 582 | + "age_group": "31-35岁", | ||
| 583 | + "education": "高中", | ||
| 584 | + "registration_date": "2023-12-19 07:11:49", | ||
| 585 | + "location": "成都", | ||
| 586 | + "bio": "沟通,思考,价值,教育,分享,心灵,交流,生活,经验,启发,专注,情感", | ||
| 587 | + "interests": [ | ||
| 588 | + "社会科学", | ||
| 589 | + "音乐", | ||
| 590 | + "古典文学" | ||
| 591 | + ], | ||
| 592 | + "is_organizer": false, | ||
| 593 | + "organization": null, | ||
| 594 | + "activity_count": 5, | ||
| 595 | + "follow_count": 39, | ||
| 596 | + "followers_count": 14, | ||
| 597 | + "is_new_user": false | ||
| 598 | + }, | ||
| 599 | + { | ||
| 600 | + "id": "U0024", | ||
| 601 | + "username": "bookworm707", | ||
| 602 | + "name": "胡敏", | ||
| 603 | + "avatar": "https://randomuser.me/api/portraits/men/80.jpg", | ||
| 604 | + "phone": "13799073465", | ||
| 605 | + "email": "bookworm707@yahoo.com", | ||
| 606 | + "gender": "女", | ||
| 607 | + "age_group": "31-35岁", | ||
| 608 | + "education": "博士", | ||
| 609 | + "registration_date": "2024-03-23 07:11:49", | ||
| 610 | + "location": "武汉", | ||
| 611 | + "bio": "沟通,情感,思考,未来,知识,生活,知识,工作,经验,教育,文化,专注,专注,情感,认知,未来,经验,精神,教育,认知,坚持,视野,精神,情感,交流,观点,表达,专注,分享,经验,视野,知识,认知", | ||
| 612 | + "interests": [ | ||
| 613 | + "外国文学", | ||
| 614 | + "音乐", | ||
| 615 | + "管理", | ||
| 616 | + "艺术" | ||
| 617 | + ], | ||
| 618 | + "is_organizer": false, | ||
| 619 | + "organization": null, | ||
| 620 | + "activity_count": 4, | ||
| 621 | + "follow_count": 17, | ||
| 622 | + "followers_count": 6, | ||
| 623 | + "is_new_user": false | ||
| 624 | + }, | ||
| 625 | + { | ||
| 626 | + "id": "U0025", | ||
| 627 | + "username": "philosopher564", | ||
| 628 | + "name": "朱洋", | ||
| 629 | + "avatar": "https://randomuser.me/api/portraits/women/71.jpg", | ||
| 630 | + "phone": "18654998138", | ||
| 631 | + "email": "philosopher564@foxmail.com", | ||
| 632 | + "gender": "男", | ||
| 633 | + "age_group": "50岁以上", | ||
| 634 | + "education": "硕士", | ||
| 635 | + "registration_date": "2023-05-23 07:11:49", | ||
| 636 | + "location": "深圳", | ||
| 637 | + "bio": "思考,经验,观点,学习,理解,智慧,交流,表达,专注,", | ||
| 638 | + "interests": [ | ||
| 639 | + "传记", | ||
| 640 | + "社会科学", | ||
| 641 | + "经济", | ||
| 642 | + "音乐" | ||
| 643 | + ], | ||
| 644 | + "is_organizer": false, | ||
| 645 | + "organization": null, | ||
| 646 | + "activity_count": 3, | ||
| 647 | + "follow_count": 20, | ||
| 648 | + "followers_count": 27, | ||
| 649 | + "is_new_user": false | ||
| 650 | + }, | ||
| 651 | + { | ||
| 652 | + "id": "U0026", | ||
| 653 | + "username": "sage490", | ||
| 654 | + "name": "吴洋", | ||
| 655 | + "avatar": "https://randomuser.me/api/portraits/men/71.jpg", | ||
| 656 | + "phone": "13415330923", | ||
| 657 | + "email": "sage490@163.com", | ||
| 658 | + "gender": "女", | ||
| 659 | + "age_group": "36-40岁", | ||
| 660 | + "education": "大专", | ||
| 661 | + "registration_date": "2025-01-10 07:11:49", | ||
| 662 | + "location": "广州", | ||
| 663 | + "bio": "成长,心灵,精神,交流,分享,观点,认知,坚持,交流,创造,思考,经验,兴趣", | ||
| 664 | + "interests": [ | ||
| 665 | + "音乐", | ||
| 666 | + "健康" | ||
| 667 | + ], | ||
| 668 | + "is_organizer": false, | ||
| 669 | + "organization": null, | ||
| 670 | + "activity_count": 13, | ||
| 671 | + "follow_count": 49, | ||
| 672 | + "followers_count": 20, | ||
| 673 | + "is_new_user": false | ||
| 674 | + }, | ||
| 675 | + { | ||
| 676 | + "id": "U0027", | ||
| 677 | + "username": "bookworm606", | ||
| 678 | + "name": "王勇", | ||
| 679 | + "avatar": "https://randomuser.me/api/portraits/women/55.jpg", | ||
| 680 | + "phone": "18785082868", | ||
| 681 | + "email": "bookworm606@126.com", | ||
| 682 | + "gender": "女", | ||
| 683 | + "age_group": "41-50岁", | ||
| 684 | + "education": "高中", | ||
| 685 | + "registration_date": "2024-12-05 07:11:49", | ||
| 686 | + "location": "武汉", | ||
| 687 | + "bio": "坚持,价值,思考,视野,观点,精神,感悟,分享,理解,启发,思考,文化,精神,思想,思考,热爱,", | ||
| 688 | + "interests": [ | ||
| 689 | + "历史", | ||
| 690 | + "健康", | ||
| 691 | + "管理", | ||
| 692 | + "古典文学" | ||
| 693 | + ], | ||
| 694 | + "is_organizer": false, | ||
| 695 | + "organization": null, | ||
| 696 | + "activity_count": 3, | ||
| 697 | + "follow_count": 29, | ||
| 698 | + "followers_count": 24, | ||
| 699 | + "is_new_user": false | ||
| 700 | + }, | ||
| 701 | + { | ||
| 702 | + "id": "U0028", | ||
| 703 | + "username": "sage811", | ||
| 704 | + "name": "罗强", | ||
| 705 | + "avatar": "https://randomuser.me/api/portraits/men/30.jpg", | ||
| 706 | + "phone": "15294749899", | ||
| 707 | + "email": "sage811@hotmail.com", | ||
| 708 | + "gender": "男", | ||
| 709 | + "age_group": "25-30岁", | ||
| 710 | + "education": "大专", | ||
| 711 | + "registration_date": "2024-08-05 07:11:49", | ||
| 712 | + "location": "北京", | ||
| 713 | + "bio": "成长,视野,视野,读书,思想,思想,沟通,知识,启发,精神,成长,感悟,认知,探索,表达,感悟,启发,热爱,文化,专注,思想,感悟,专注,情感,思想,发现,兴趣", | ||
| 714 | + "interests": [ | ||
| 715 | + "艺术", | ||
| 716 | + "文学", | ||
| 717 | + "管理" | ||
| 718 | + ], | ||
| 719 | + "is_organizer": false, | ||
| 720 | + "organization": null, | ||
| 721 | + "activity_count": 15, | ||
| 722 | + "follow_count": 13, | ||
| 723 | + "followers_count": 17, | ||
| 724 | + "is_new_user": false | ||
| 725 | + }, | ||
| 726 | + { | ||
| 727 | + "id": "U0029", | ||
| 728 | + "username": "scholar879", | ||
| 729 | + "name": "朱强", | ||
| 730 | + "avatar": "https://randomuser.me/api/portraits/men/24.jpg", | ||
| 731 | + "phone": "15552442116", | ||
| 732 | + "email": "scholar879@yahoo.com", | ||
| 733 | + "gender": "女", | ||
| 734 | + "age_group": "31-35岁", | ||
| 735 | + "education": "本科", | ||
| 736 | + "registration_date": "2024-04-26 07:11:49", | ||
| 737 | + "location": "西安", | ||
| 738 | + "bio": "生活,发现,沟通,感悟,情感,探索,生活,精神,教育,知识,思考,交流,成长,心灵,价值,教育,工作,心灵,发现,思想,发现,观点,经验,经验,成长,表达,表达,视野,知识,生活,教育", | ||
| 739 | + "interests": [ | ||
| 740 | + "推理", | ||
| 741 | + "管理" | ||
| 742 | + ], | ||
| 743 | + "is_organizer": false, | ||
| 744 | + "organization": null, | ||
| 745 | + "activity_count": 3, | ||
| 746 | + "follow_count": 4, | ||
| 747 | + "followers_count": 14, | ||
| 748 | + "is_new_user": false | ||
| 749 | + }, | ||
| 750 | + { | ||
| 751 | + "id": "U0030", | ||
| 752 | + "username": "booklover385", | ||
| 753 | + "name": "张涛", | ||
| 754 | + "avatar": "https://randomuser.me/api/portraits/women/38.jpg", | ||
| 755 | + "phone": "15189425224", | ||
| 756 | + "email": "booklover385@gmail.com", | ||
| 757 | + "gender": "女", | ||
| 758 | + "age_group": "41-50岁", | ||
| 759 | + "education": "高中", | ||
| 760 | + "registration_date": "2024-05-14 07:11:49", | ||
| 761 | + "location": "成都", | ||
| 762 | + "bio": "认知,经验,心灵,经验,观点,读书,热爱,思考,思考", | ||
| 763 | + "interests": [ | ||
| 764 | + "哲学", | ||
| 765 | + "文学", | ||
| 766 | + "科幻", | ||
| 767 | + "社会科学", | ||
| 768 | + "外国文学" | ||
| 769 | + ], | ||
| 770 | + "is_organizer": false, | ||
| 771 | + "organization": null, | ||
| 772 | + "activity_count": 8, | ||
| 773 | + "follow_count": 16, | ||
| 774 | + "followers_count": 19, | ||
| 775 | + "is_new_user": false | ||
| 776 | + }, | ||
| 777 | + { | ||
| 778 | + "id": "U0031", | ||
| 779 | + "username": "bibliophile693", | ||
| 780 | + "name": "李芳", | ||
| 781 | + "avatar": "https://randomuser.me/api/portraits/women/21.jpg", | ||
| 782 | + "phone": "18658709476", | ||
| 783 | + "email": "bibliophile693@hotmail.com", | ||
| 784 | + "gender": "男", | ||
| 785 | + "age_group": "36-40岁", | ||
| 786 | + "education": "高中", | ||
| 787 | + "registration_date": "2023-05-29 07:11:49", | ||
| 788 | + "location": "杭州", | ||
| 789 | + "bio": "观点,交流,启发,思想,兴趣,生活,精神,思想,交流", | ||
| 790 | + "interests": [ | ||
| 791 | + "外国文学", | ||
| 792 | + "哲学", | ||
| 793 | + "经济", | ||
| 794 | + "科技", | ||
| 795 | + "历史" | ||
| 796 | + ], | ||
| 797 | + "is_organizer": false, | ||
| 798 | + "organization": null, | ||
| 799 | + "activity_count": 7, | ||
| 800 | + "follow_count": 21, | ||
| 801 | + "followers_count": 9, | ||
| 802 | + "is_new_user": false | ||
| 803 | + }, | ||
| 804 | + { | ||
| 805 | + "id": "U0032", | ||
| 806 | + "username": "scholar444", | ||
| 807 | + "name": "王敏", | ||
| 808 | + "avatar": "https://randomuser.me/api/portraits/men/69.jpg", | ||
| 809 | + "phone": "18353657373", | ||
| 810 | + "email": "scholar444@163.com", | ||
| 811 | + "gender": "女", | ||
| 812 | + "age_group": "25-30岁", | ||
| 813 | + "education": "高中", | ||
| 814 | + "registration_date": "2024-01-10 07:11:49", | ||
| 815 | + "location": "重庆", | ||
| 816 | + "bio": "读书,创造,价值,发现,工作,探索,未来,理解,视野,经验,成长,思考,思想,价值,文化,思想,观点,教育,沟通,坚持,表达,生活,经验,分享,心灵,探索,智慧,智慧,知识,", | ||
| 817 | + "interests": [ | ||
| 818 | + "推理", | ||
| 819 | + "健康", | ||
| 820 | + "社会科学" | ||
| 821 | + ], | ||
| 822 | + "is_organizer": false, | ||
| 823 | + "organization": null, | ||
| 824 | + "activity_count": 9, | ||
| 825 | + "follow_count": 18, | ||
| 826 | + "followers_count": 28, | ||
| 827 | + "is_new_user": false | ||
| 828 | + }, | ||
| 829 | + { | ||
| 830 | + "id": "U0033", | ||
| 831 | + "username": "bibliophile775", | ||
| 832 | + "name": "林秀英", | ||
| 833 | + "avatar": "https://randomuser.me/api/portraits/men/39.jpg", | ||
| 834 | + "phone": "13786169274", | ||
| 835 | + "email": "bibliophile775@outlook.com", | ||
| 836 | + "gender": "女", | ||
| 837 | + "age_group": "25-30岁", | ||
| 838 | + "education": "高中", | ||
| 839 | + "registration_date": "2025-03-20 07:11:49", | ||
| 840 | + "location": "西安", | ||
| 841 | + "bio": "知识,认知,坚持,精神,文化,读书,未来,分享,智慧,专注,分享,经验,热爱,专注,未来,兴趣,探索,智慧", | ||
| 842 | + "interests": [ | ||
| 843 | + "科幻" | ||
| 844 | + ], | ||
| 845 | + "is_organizer": false, | ||
| 846 | + "organization": null, | ||
| 847 | + "activity_count": 14, | ||
| 848 | + "follow_count": 27, | ||
| 849 | + "followers_count": 1, | ||
| 850 | + "is_new_user": true | ||
| 851 | + }, | ||
| 852 | + { | ||
| 853 | + "id": "U0034", | ||
| 854 | + "username": "philosopher472", | ||
| 855 | + "name": "何平", | ||
| 856 | + "avatar": "https://randomuser.me/api/portraits/women/22.jpg", | ||
| 857 | + "phone": "13967679665", | ||
| 858 | + "email": "philosopher472@gmail.com", | ||
| 859 | + "gender": "女", | ||
| 860 | + "age_group": "25-30岁", | ||
| 861 | + "education": "本科", | ||
| 862 | + "registration_date": "2023-11-02 07:11:49", | ||
| 863 | + "location": "广州", | ||
| 864 | + "bio": "知识,思考,坚持,学习,专注,学习,发现,分享,智慧,经验,心灵,工作,专注,生活,未来,成长,价值,精神,热爱,精神,工作,专注,智慧,心灵,智慧,感悟", | ||
| 865 | + "interests": [ | ||
| 866 | + "心理学", | ||
| 867 | + "哲学", | ||
| 868 | + "古典文学", | ||
| 869 | + "音乐" | ||
| 870 | + ], | ||
| 871 | + "is_organizer": false, | ||
| 872 | + "organization": null, | ||
| 873 | + "activity_count": 10, | ||
| 874 | + "follow_count": 4, | ||
| 875 | + "followers_count": 27, | ||
| 876 | + "is_new_user": false | ||
| 877 | + }, | ||
| 878 | + { | ||
| 879 | + "id": "U0035", | ||
| 880 | + "username": "thinker448", | ||
| 881 | + "name": "罗芳", | ||
| 882 | + "avatar": "https://randomuser.me/api/portraits/men/51.jpg", | ||
| 883 | + "phone": "18474979217", | ||
| 884 | + "email": "thinker448@hotmail.com", | ||
| 885 | + "gender": "女", | ||
| 886 | + "age_group": "36-40岁", | ||
| 887 | + "education": "本科", | ||
| 888 | + "registration_date": "2024-03-12 07:11:49", | ||
| 889 | + "location": "武汉", | ||
| 890 | + "bio": "沟通,发现,表达,表达,读书,热爱,热爱,观点,理解,创造,观点,感悟,观点,交流,探索,心灵,表达,思想,专注,思想,探索,学习,理解,坚持,理解,坚持,热爱,探索,价值,感悟,文化,探索,经验,成", | ||
| 891 | + "interests": [ | ||
| 892 | + "科幻" | ||
| 893 | + ], | ||
| 894 | + "is_organizer": false, | ||
| 895 | + "organization": null, | ||
| 896 | + "activity_count": 15, | ||
| 897 | + "follow_count": 16, | ||
| 898 | + "followers_count": 29, | ||
| 899 | + "is_new_user": false | ||
| 900 | + }, | ||
| 901 | + { | ||
| 902 | + "id": "U0036", | ||
| 903 | + "username": "scholar345", | ||
| 904 | + "name": "刘杰", | ||
| 905 | + "avatar": "https://randomuser.me/api/portraits/women/49.jpg", | ||
| 906 | + "phone": "18492551516", | ||
| 907 | + "email": "scholar345@qq.com", | ||
| 908 | + "gender": "女", | ||
| 909 | + "age_group": "36-40岁", | ||
| 910 | + "education": "博士", | ||
| 911 | + "registration_date": "2024-10-14 07:11:49", | ||
| 912 | + "location": "上海", | ||
| 913 | + "bio": "文化,工作,表达,理解,未来,沟通,启发,坚持,工作,认知,学习,未来,热爱,专注,价值,兴趣,工作", | ||
| 914 | + "interests": [ | ||
| 915 | + "历史", | ||
| 916 | + "心理学" | ||
| 917 | + ], | ||
| 918 | + "is_organizer": false, | ||
| 919 | + "organization": null, | ||
| 920 | + "activity_count": 3, | ||
| 921 | + "follow_count": 0, | ||
| 922 | + "followers_count": 20, | ||
| 923 | + "is_new_user": false | ||
| 924 | + }, | ||
| 925 | + { | ||
| 926 | + "id": "U0037", | ||
| 927 | + "username": "bookworm118", | ||
| 928 | + "name": "黄静", | ||
| 929 | + "avatar": "https://randomuser.me/api/portraits/women/25.jpg", | ||
| 930 | + "phone": "18027065768", | ||
| 931 | + "email": "bookworm118@126.com", | ||
| 932 | + "gender": "女", | ||
| 933 | + "age_group": "41-50岁", | ||
| 934 | + "education": "硕士", | ||
| 935 | + "registration_date": "2024-06-03 07:11:49", | ||
| 936 | + "location": "深圳", | ||
| 937 | + "bio": "启发,学习,分享,探索,工作,思想,经验,创造,认知,理解,理解,专注,智慧,兴趣,思想,灵感", | ||
| 938 | + "interests": [ | ||
| 939 | + "诗歌", | ||
| 940 | + "社会科学", | ||
| 941 | + "哲学", | ||
| 942 | + "艺术", | ||
| 943 | + "政治" | ||
| 944 | + ], | ||
| 945 | + "is_organizer": false, | ||
| 946 | + "organization": null, | ||
| 947 | + "activity_count": 15, | ||
| 948 | + "follow_count": 33, | ||
| 949 | + "followers_count": 21, | ||
| 950 | + "is_new_user": false | ||
| 951 | + }, | ||
| 952 | + { | ||
| 953 | + "id": "U0038", | ||
| 954 | + "username": "sage197", | ||
| 955 | + "name": "杨伟", | ||
| 956 | + "avatar": "https://randomuser.me/api/portraits/men/33.jpg", | ||
| 957 | + "phone": "15524305177", | ||
| 958 | + "email": "sage197@outlook.com", | ||
| 959 | + "gender": "女", | ||
| 960 | + "age_group": "50岁以上", | ||
| 961 | + "education": "高中", | ||
| 962 | + "registration_date": "2024-12-24 07:11:49", | ||
| 963 | + "location": "深圳", | ||
| 964 | + "bio": "心灵,学习,文化,读书,思考,文化,表达,教育,灵感,价值,表达,启发,创造,专注,表达,感悟,文化,兴趣,探索,价值,灵感,价值,探索,精神,价值,经验,坚持,表达,", | ||
| 965 | + "interests": [ | ||
| 966 | + "外国文学" | ||
| 967 | + ], | ||
| 968 | + "is_organizer": false, | ||
| 969 | + "organization": null, | ||
| 970 | + "activity_count": 15, | ||
| 971 | + "follow_count": 13, | ||
| 972 | + "followers_count": 1, | ||
| 973 | + "is_new_user": false | ||
| 974 | + }, | ||
| 975 | + { | ||
| 976 | + "id": "U0039", | ||
| 977 | + "username": "reader235", | ||
| 978 | + "name": "罗芳", | ||
| 979 | + "avatar": "https://randomuser.me/api/portraits/men/35.jpg", | ||
| 980 | + "phone": "13189382815", | ||
| 981 | + "email": "reader235@126.com", | ||
| 982 | + "gender": "女", | ||
| 983 | + "age_group": "25-30岁", | ||
| 984 | + "education": "大专", | ||
| 985 | + "registration_date": "2024-06-30 07:11:49", | ||
| 986 | + "location": "南京", | ||
| 987 | + "bio": "视野,兴趣,知识,认知,思考,学习,灵感,教育,读书,专注,智慧,文化,发现,成长,学习,灵感,生活,思想,工作,读书,热爱,价值,感悟,视野,智慧,精神,教育,交流,学习,坚持", | ||
| 988 | + "interests": [ | ||
| 989 | + "科幻", | ||
| 990 | + "经济" | ||
| 991 | + ], | ||
| 992 | + "is_organizer": false, | ||
| 993 | + "organization": null, | ||
| 994 | + "activity_count": 13, | ||
| 995 | + "follow_count": 39, | ||
| 996 | + "followers_count": 12, | ||
| 997 | + "is_new_user": false | ||
| 998 | + }, | ||
| 999 | + { | ||
| 1000 | + "id": "U0040", | ||
| 1001 | + "username": "scholar946", | ||
| 1002 | + "name": "孙敏", | ||
| 1003 | + "avatar": "https://randomuser.me/api/portraits/men/96.jpg", | ||
| 1004 | + "phone": "13191009314", | ||
| 1005 | + "email": "scholar946@gmail.com", | ||
| 1006 | + "gender": "女", | ||
| 1007 | + "age_group": "18-24岁", | ||
| 1008 | + "education": "博士", | ||
| 1009 | + "registration_date": "2024-10-30 07:11:49", | ||
| 1010 | + "location": "深圳", | ||
| 1011 | + "bio": "认知,坚持,启发,情感,情感,生活,思想,感悟,坚持,发现,读书,工作,成长,视野,灵感,经验,探索,启发,表达,发现,观点,成长", | ||
| 1012 | + "interests": [ | ||
| 1013 | + "古典文学", | ||
| 1014 | + "历史" | ||
| 1015 | + ], | ||
| 1016 | + "is_organizer": false, | ||
| 1017 | + "organization": null, | ||
| 1018 | + "activity_count": 14, | ||
| 1019 | + "follow_count": 13, | ||
| 1020 | + "followers_count": 12, | ||
| 1021 | + "is_new_user": false | ||
| 1022 | + }, | ||
| 1023 | + { | ||
| 1024 | + "id": "O0001", | ||
| 1025 | + "username": "sage841", | ||
| 1026 | + "name": "王超", | ||
| 1027 | + "avatar": "https://randomuser.me/api/portraits/men/49.jpg", | ||
| 1028 | + "phone": "13039676712", | ||
| 1029 | + "email": "sage841@hotmail.com", | ||
| 1030 | + "gender": "女", | ||
| 1031 | + "age_group": "31-35岁", | ||
| 1032 | + "education": "博士", | ||
| 1033 | + "registration_date": "2022-11-07 07:11:49", | ||
| 1034 | + "location": "南京", | ||
| 1035 | + "bio": "学习,认知,理解,成长,兴趣,视野,兴趣,情感,交流,智慧,交流,智慧,交流,启发,生活,启发,知识,启发,智慧,学习,理解,创造,价值,生活,思想,学习,生活,读书,坚持,热爱,思考,感悟,读书,交流,思想,成长,学习,工作,视野,专注,认知,心灵,心灵,探索,文化", | ||
| 1036 | + "interests": [ | ||
| 1037 | + "艺术", | ||
| 1038 | + "科幻", | ||
| 1039 | + "推理", | ||
| 1040 | + "历史" | ||
| 1041 | + ], | ||
| 1042 | + "is_organizer": true, | ||
| 1043 | + "organization": "光合作用文化空间", | ||
| 1044 | + "activity_count": 31, | ||
| 1045 | + "follow_count": 40, | ||
| 1046 | + "followers_count": 50, | ||
| 1047 | + "is_new_user": false | ||
| 1048 | + }, | ||
| 1049 | + { | ||
| 1050 | + "id": "O0002", | ||
| 1051 | + "username": "bibliophile236", | ||
| 1052 | + "name": "罗芳", | ||
| 1053 | + "avatar": "https://randomuser.me/api/portraits/women/83.jpg", | ||
| 1054 | + "phone": "15760214355", | ||
| 1055 | + "email": "bibliophile236@163.com", | ||
| 1056 | + "gender": "女", | ||
| 1057 | + "age_group": "41-50岁", | ||
| 1058 | + "education": "本科", | ||
| 1059 | + "registration_date": "2023-01-08 07:11:49", | ||
| 1060 | + "location": "北京", | ||
| 1061 | + "bio": "学习,观点,经验,观点,创造,精神,沟通,心灵,启发,兴趣,创造,理解,思考,经验,文化,坚持,热爱,沟通,教育,认知,成长,分享,理解,思想,智慧,探索,表达,教育,观点,观点,教育,思想,发现,生活,视野,思想,情感,探索,成长,交流,观点,成长,文化,探索,感悟,文化,智慧,学习,思考", | ||
| 1062 | + "interests": [ | ||
| 1063 | + "文学", | ||
| 1064 | + "古典文学", | ||
| 1065 | + "诗歌" | ||
| 1066 | + ], | ||
| 1067 | + "is_organizer": true, | ||
| 1068 | + "organization": "四季阅读空间", | ||
| 1069 | + "activity_count": 16, | ||
| 1070 | + "follow_count": 161, | ||
| 1071 | + "followers_count": 235, | ||
| 1072 | + "is_new_user": false | ||
| 1073 | + }, | ||
| 1074 | + { | ||
| 1075 | + "id": "O0003", | ||
| 1076 | + "username": "booklover483", | ||
| 1077 | + "name": "李秀英", | ||
| 1078 | + "avatar": "https://randomuser.me/api/portraits/women/77.jpg", | ||
| 1079 | + "phone": "15043716500", | ||
| 1080 | + "email": "booklover483@hotmail.com", | ||
| 1081 | + "gender": "女", | ||
| 1082 | + "age_group": "31-35岁", | ||
| 1083 | + "education": "硕士", | ||
| 1084 | + "registration_date": "2023-05-17 07:11:49", | ||
| 1085 | + "location": "深圳", | ||
| 1086 | + "bio": "精神,教育,视野,心灵,交流,未来,认知,文化,热爱,学习,经验,工作,启发,价值,学习,成长,交流,成长,工作,生活,分享,创造,文化,工作,表达,视野,工作", | ||
| 1087 | + "interests": [ | ||
| 1088 | + "古典文学", | ||
| 1089 | + "健康", | ||
| 1090 | + "历史", | ||
| 1091 | + "诗歌", | ||
| 1092 | + "艺术", | ||
| 1093 | + "教育" | ||
| 1094 | + ], | ||
| 1095 | + "is_organizer": true, | ||
| 1096 | + "organization": "知行合一读书社", | ||
| 1097 | + "activity_count": 31, | ||
| 1098 | + "follow_count": 37, | ||
| 1099 | + "followers_count": 490, | ||
| 1100 | + "is_new_user": false | ||
| 1101 | + }, | ||
| 1102 | + { | ||
| 1103 | + "id": "O0004", | ||
| 1104 | + "username": "sage327", | ||
| 1105 | + "name": "赵磊", | ||
| 1106 | + "avatar": "https://randomuser.me/api/portraits/women/32.jpg", | ||
| 1107 | + "phone": "18591156244", | ||
| 1108 | + "email": "sage327@163.com", | ||
| 1109 | + "gender": "女", | ||
| 1110 | + "age_group": "41-50岁", | ||
| 1111 | + "education": "硕士", | ||
| 1112 | + "registration_date": "2023-03-12 07:11:49", | ||
| 1113 | + "location": "武汉", | ||
| 1114 | + "bio": "经验,读书,创造,思考,工作,价值,视野,交流,表达,教育,分享,价值,分享,创造,知识,热爱,经验,工作", | ||
| 1115 | + "interests": [ | ||
| 1116 | + "经济", | ||
| 1117 | + "古典文学", | ||
| 1118 | + "哲学", | ||
| 1119 | + "教育", | ||
| 1120 | + "艺术", | ||
| 1121 | + "音乐", | ||
| 1122 | + "社会科学", | ||
| 1123 | + "旅行" | ||
| 1124 | + ], | ||
| 1125 | + "is_organizer": true, | ||
| 1126 | + "organization": "百草园读书会", | ||
| 1127 | + "activity_count": 44, | ||
| 1128 | + "follow_count": 21, | ||
| 1129 | + "followers_count": 150, | ||
| 1130 | + "is_new_user": false | ||
| 1131 | + }, | ||
| 1132 | + { | ||
| 1133 | + "id": "O0005", | ||
| 1134 | + "username": "bookworm479", | ||
| 1135 | + "name": "朱明", | ||
| 1136 | + "avatar": "https://randomuser.me/api/portraits/men/45.jpg", | ||
| 1137 | + "phone": "13581054570", | ||
| 1138 | + "email": "bookworm479@163.com", | ||
| 1139 | + "gender": "男", | ||
| 1140 | + "age_group": "50岁以上", | ||
| 1141 | + "education": "硕士", | ||
| 1142 | + "registration_date": "2022-09-04 07:11:49", | ||
| 1143 | + "location": "西安", | ||
| 1144 | + "bio": "智慧,认知,心灵,价值,经验,智慧,视野,认知,专注,启发,智慧,心灵,沟通,经验,交流,智慧,交流,坚持,精神,智慧,教育,发现,探索,精神,坚持,经验,知识,探索,经验,认知,专注,", | ||
| 1145 | + "interests": [ | ||
| 1146 | + "哲学", | ||
| 1147 | + "心理学", | ||
| 1148 | + "科幻", | ||
| 1149 | + "传记", | ||
| 1150 | + "经济", | ||
| 1151 | + "政治", | ||
| 1152 | + "科技" | ||
| 1153 | + ], | ||
| 1154 | + "is_organizer": true, | ||
| 1155 | + "organization": "鹿鸣书店", | ||
| 1156 | + "activity_count": 26, | ||
| 1157 | + "follow_count": 96, | ||
| 1158 | + "followers_count": 454, | ||
| 1159 | + "is_new_user": false | ||
| 1160 | + }, | ||
| 1161 | + { | ||
| 1162 | + "id": "O0006", | ||
| 1163 | + "username": "booklover785", | ||
| 1164 | + "name": "李敏", | ||
| 1165 | + "avatar": "https://randomuser.me/api/portraits/women/51.jpg", | ||
| 1166 | + "phone": "15828129990", | ||
| 1167 | + "email": "booklover785@foxmail.com", | ||
| 1168 | + "gender": "女", | ||
| 1169 | + "age_group": "50岁以上", | ||
| 1170 | + "education": "硕士", | ||
| 1171 | + "registration_date": "2024-07-16 07:11:49", | ||
| 1172 | + "location": "成都", | ||
| 1173 | + "bio": "分享,灵感,分享,视野,心灵,分享,视野,创造,认知,读书,专注,理解,视野,探索,视野,感悟,发现,精神,工作,精神,情感,表达,交流,生活,沟通,观点,启发,热爱", | ||
| 1174 | + "interests": [ | ||
| 1175 | + "文学", | ||
| 1176 | + "心理学", | ||
| 1177 | + "科技", | ||
| 1178 | + "历史" | ||
| 1179 | + ], | ||
| 1180 | + "is_organizer": true, | ||
| 1181 | + "organization": "百草园读书会", | ||
| 1182 | + "activity_count": 37, | ||
| 1183 | + "follow_count": 133, | ||
| 1184 | + "followers_count": 425, | ||
| 1185 | + "is_new_user": false | ||
| 1186 | + }, | ||
| 1187 | + { | ||
| 1188 | + "id": "O0007", | ||
| 1189 | + "username": "bookworm995", | ||
| 1190 | + "name": "刘明", | ||
| 1191 | + "avatar": "https://randomuser.me/api/portraits/men/35.jpg", | ||
| 1192 | + "phone": "18484363974", | ||
| 1193 | + "email": "bookworm995@163.com", | ||
| 1194 | + "gender": "女", | ||
| 1195 | + "age_group": "31-35岁", | ||
| 1196 | + "education": "博士", | ||
| 1197 | + "registration_date": "2024-03-02 07:11:49", | ||
| 1198 | + "location": "南京", | ||
| 1199 | + "bio": "专注,情感,未来,专注,文化,思考,生活,心灵,精神,启发,分享,工作,感悟,思想,创造,理解,思想,工作,思考,热爱,认知,启发,精神,交流,启发,知识,坚持,认知,知识,读书,认知,学习,坚持,精神,兴趣,智慧,理解,发现", | ||
| 1200 | + "interests": [ | ||
| 1201 | + "教育", | ||
| 1202 | + "经济", | ||
| 1203 | + "文学", | ||
| 1204 | + "健康", | ||
| 1205 | + "传记", | ||
| 1206 | + "科技", | ||
| 1207 | + "心理学", | ||
| 1208 | + "政治" | ||
| 1209 | + ], | ||
| 1210 | + "is_organizer": true, | ||
| 1211 | + "organization": "百草园读书会", | ||
| 1212 | + "activity_count": 28, | ||
| 1213 | + "follow_count": 73, | ||
| 1214 | + "followers_count": 319, | ||
| 1215 | + "is_new_user": false | ||
| 1216 | + }, | ||
| 1217 | + { | ||
| 1218 | + "id": "O0008", | ||
| 1219 | + "username": "literati792", | ||
| 1220 | + "name": "吴军", | ||
| 1221 | + "avatar": "https://randomuser.me/api/portraits/women/25.jpg", | ||
| 1222 | + "phone": "18764703997", | ||
| 1223 | + "email": "literati792@hotmail.com", | ||
| 1224 | + "gender": "女", | ||
| 1225 | + "age_group": "31-35岁", | ||
| 1226 | + "education": "本科", | ||
| 1227 | + "registration_date": "2023-09-21 07:11:49", | ||
| 1228 | + "location": "西安", | ||
| 1229 | + "bio": "认知,未来,沟通,灵感,思想,坚持,启发,思想,思考,生活,思考,未来,成长,学习,表达,精神,理解,未来,认知,坚持,表达,价值,沟通,精神,思想,分享,观点,视野,知识,灵感,生活,文化,学习,思想,观点,智慧,创造,兴趣,学习,坚持,精神,成长", | ||
| 1230 | + "interests": [ | ||
| 1231 | + "哲学", | ||
| 1232 | + "经济", | ||
| 1233 | + "古典文学" | ||
| 1234 | + ], | ||
| 1235 | + "is_organizer": true, | ||
| 1236 | + "organization": "墨香文化传媒", | ||
| 1237 | + "activity_count": 41, | ||
| 1238 | + "follow_count": 175, | ||
| 1239 | + "followers_count": 306, | ||
| 1240 | + "is_new_user": false | ||
| 1241 | + }, | ||
| 1242 | + { | ||
| 1243 | + "id": "O0009", | ||
| 1244 | + "username": "reader617", | ||
| 1245 | + "name": "陈艳", | ||
| 1246 | + "avatar": "https://randomuser.me/api/portraits/women/25.jpg", | ||
| 1247 | + "phone": "15658916066", | ||
| 1248 | + "email": "reader617@foxmail.com", | ||
| 1249 | + "gender": "女", | ||
| 1250 | + "age_group": "41-50岁", | ||
| 1251 | + "education": "本科", | ||
| 1252 | + "registration_date": "2024-06-26 07:11:49", | ||
| 1253 | + "location": "西安", | ||
| 1254 | + "bio": "思考,读书,精神,创造,热爱,情感,读书,创造,工作,灵感,热爱,创造,认知,沟通,读书,精神,生活,心灵,学习,热爱,交流,发现,知识,经验,感悟,创造,读书,学习,探索,文化,沟通,发现", | ||
| 1255 | + "interests": [ | ||
| 1256 | + "科技", | ||
| 1257 | + "诗歌", | ||
| 1258 | + "教育" | ||
| 1259 | + ], | ||
| 1260 | + "is_organizer": true, | ||
| 1261 | + "organization": "四季阅读空间", | ||
| 1262 | + "activity_count": 24, | ||
| 1263 | + "follow_count": 35, | ||
| 1264 | + "followers_count": 84, | ||
| 1265 | + "is_new_user": false | ||
| 1266 | + }, | ||
| 1267 | + { | ||
| 1268 | + "id": "O0010", | ||
| 1269 | + "username": "bibliophile948", | ||
| 1270 | + "name": "李伟", | ||
| 1271 | + "avatar": "https://randomuser.me/api/portraits/women/58.jpg", | ||
| 1272 | + "phone": "18696049013", | ||
| 1273 | + "email": "bibliophile948@hotmail.com", | ||
| 1274 | + "gender": "男", | ||
| 1275 | + "age_group": "50岁以上", | ||
| 1276 | + "education": "硕士", | ||
| 1277 | + "registration_date": "2024-02-21 07:11:49", | ||
| 1278 | + "location": "南京", | ||
| 1279 | + "bio": "工作,教育,视野,教育,认知,创造,生活,价值,学习,教育,专注,情感,价值,沟通,热爱,未来,知识,知识,思想,表达,知识,创造,专注,交流,视野,思考,感悟,", | ||
| 1280 | + "interests": [ | ||
| 1281 | + "社会科学", | ||
| 1282 | + "音乐", | ||
| 1283 | + "教育", | ||
| 1284 | + "旅行" | ||
| 1285 | + ], | ||
| 1286 | + "is_organizer": true, | ||
| 1287 | + "organization": "青禾读书会", | ||
| 1288 | + "activity_count": 17, | ||
| 1289 | + "follow_count": 135, | ||
| 1290 | + "followers_count": 269, | ||
| 1291 | + "is_new_user": false | ||
| 17 | } | 1292 | } |
| 18 | ] | 1293 | ] |
| 19 | } | 1294 | } | ... | ... |
-
Please register or login to post a comment