-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSqls.sql
More file actions
576 lines (566 loc) · 196 KB
/
Copy pathSqls.sql
File metadata and controls
576 lines (566 loc) · 196 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
create table user
(
id bigint auto_increment comment '用户ID,主键'
primary key,
username varchar(50) not null comment '用户名,唯一',
password varchar(255) not null comment '密码,BCrypt加密',
email varchar(100) null comment '邮箱,唯一',
phone varchar(20) null comment '手机号',
profession varchar(100) null comment '职业',
skills text null comment '技能标签,逗号分隔',
goals text null comment '提升目标',
email_subscribe tinyint(1) default 1 not null comment '邮件订阅开关:0-关闭,1-开启',
create_time datetime default CURRENT_TIMESTAMP not null comment '创建时间',
update_time datetime default CURRENT_TIMESTAMP not null on update CURRENT_TIMESTAMP comment '更新时间',
deleted tinyint(1) default 0 not null comment '软删除标记:0-未删除,1-已删除',
constraint uk_email
unique (email),
constraint uk_username
unique (username)
)
comment '用户表' collate = utf8mb4_unicode_ci;
create index idx_deleted
on user (deleted);
create index idx_phone
on user (phone);
create index idx_profession
on user (profession);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (1, 'programmer001', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'programmer001@example.com', '13800001001', '程序员', 'Java,Spring Boot,MySQL,Redis', '提升架构设计能力,学习微服务', 0, '2024-01-01 08:00:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (2, 'programmer002', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'programmer002@example.com', '13800001002', '程序员', 'Python,Django,PostgreSQL', '学习机器学习,提升算法能力', 0, '2024-01-01 08:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (3, 'programmer003', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'programmer003@example.com', '13800001003', '程序员', 'JavaScript,Vue.js,Node.js', '掌握TypeScript,学习React', 0, '2024-01-01 09:00:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (4, 'programmer004', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'programmer004@example.com', '13800001004', '程序员', 'C++,Qt,Linux', '学习分布式系统,提升性能优化', 0, '2024-01-01 09:30:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (5, 'programmer005', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'programmer005@example.com', '13800001005', '程序员', 'Go,Docker,Kubernetes', '学习云原生技术,掌握DevOps', 0, '2024-01-01 10:00:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (6, 'programmer006', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'programmer006@example.com', '13800001006', '程序员', 'PHP,Laravel,MySQL', '学习前端技术,提升全栈能力', 0, '2024-01-01 10:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (7, 'programmer007', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'programmer007@example.com', '13800001007', '程序员', 'C#,.NET,SQL Server', '学习Azure云服务,提升架构能力', 0, '2024-01-01 11:00:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (8, 'programmer008', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'programmer008@example.com', '13800001008', '程序员', 'Ruby,Rails,PostgreSQL', '学习函数式编程,掌握Scala', 0, '2024-01-01 11:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (9, 'programmer009', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'programmer009@example.com', '13800001009', '程序员', 'Rust,WebAssembly,MongoDB', '学习区块链技术,提升安全编程', 0, '2024-01-01 12:00:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (10, 'programmer010', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'programmer010@example.com', '13800001010', '程序员', 'Swift,iOS,Xcode', '学习跨平台开发,掌握Flutter', 0, '2024-01-01 12:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (11, 'programmer011', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'programmer011@example.com', '13800001011', '程序员', 'Kotlin,Android,Firebase', '学习机器学习,提升移动端性能', 0, '2024-01-01 13:00:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (12, 'programmer012', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'programmer012@example.com', '13800001012', '程序员', 'Scala,Spark,Hadoop', '学习大数据处理,掌握流计算', 0, '2024-01-01 13:30:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (13, 'programmer013', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'programmer013@example.com', '13800001013', '程序员', 'Erlang,Elixir,RabbitMQ', '学习分布式系统,提升并发编程', 0, '2024-01-01 14:00:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (14, 'programmer014', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'programmer014@example.com', '13800001014', '程序员', 'Haskell,函数式编程,数学', '学习编译原理,提升理论基础', 0, '2024-01-01 14:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (15, 'programmer015', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'programmer015@example.com', '13800001015', '程序员', 'MATLAB,R,统计学', '学习数据科学,掌握深度学习', 0, '2024-01-01 15:00:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (16, 'programmer016', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'programmer016@example.com', '13800001016', '程序员', 'Assembly,C,嵌入式', '学习物联网技术,提升硬件编程', 0, '2024-01-01 15:30:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (17, 'programmer017', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'programmer017@example.com', '13800001017', '程序员', 'Solidity,区块链,以太坊', '学习DeFi开发,掌握智能合约', 0, '2024-01-01 16:00:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (18, 'programmer018', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'programmer018@example.com', '13800001018', '程序员', 'Unity,C#,游戏开发', '学习VR/AR技术,提升3D编程', 0, '2024-01-01 16:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (19, 'programmer019', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'programmer019@example.com', '13800001019', '程序员', 'TensorFlow,PyTorch,AI', '学习计算机视觉,掌握NLP', 0, '2024-01-01 17:00:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (20, 'programmer020', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'programmer020@example.com', '13800001020', '程序员', 'GraphQL,Apollo,微服务', '学习事件驱动架构,提升系统设计', 0, '2024-01-01 17:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (21, 'programmer021', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'programmer021@example.com', '13800001021', '程序员', 'Elasticsearch,Kibana,日志分析', '学习监控系统,掌握APM工具', 0, '2024-01-01 18:00:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (22, 'programmer022', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'programmer022@example.com', '13800001022', '程序员', 'Kafka,Zookeeper,消息队列', '学习流处理,提升实时计算能力', 0, '2024-01-01 18:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (23, 'programmer023', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'programmer023@example.com', '13800001023', '程序员', 'Jenkins,GitLab CI,自动化', '学习基础设施即代码,掌握Terraform', 0, '2024-01-01 19:00:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (24, 'programmer024', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'programmer024@example.com', '13800001024', '程序员', 'Prometheus,Grafana,监控', '学习可观测性,提升运维能力', 0, '2024-01-01 19:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (25, 'programmer025', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'programmer025@example.com', '13800001025', '程序员', 'Nginx,HAProxy,负载均衡', '学习网络编程,提升性能调优', 0, '2024-01-01 20:00:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (26, 'programmer026', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'programmer026@example.com', '13800001026', '程序员', 'Redis,Memcached,缓存', '学习分布式缓存,掌握一致性算法', 0, '2024-01-01 20:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (27, 'programmer027', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'programmer027@example.com', '13800001027', '程序员', 'Cassandra,HBase,NoSQL', '学习分布式数据库,提升数据建模', 0, '2024-01-01 21:00:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (28, 'programmer028', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'programmer028@example.com', '13800001028', '程序员', 'Istio,Service Mesh,微服务', '学习云原生安全,掌握零信任架构', 0, '2024-01-01 21:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (29, 'programmer029', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'programmer029@example.com', '13800001029', '程序员', 'WebRTC,实时通信,音视频', '学习流媒体技术,提升多媒体处理', 0, '2024-01-01 22:00:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (30, 'programmer030', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'programmer030@example.com', '13800001030', '程序员', 'WASM,边缘计算,性能优化', '学习量子计算,掌握新兴技术', 0, '2024-01-01 22:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (31, 'programmer031', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'programmer031@example.com', '13800001031', '程序员', 'Dart,Flutter,跨平台', '学习PWA技术,提升移动端体验', 0, '2024-01-02 08:00:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (32, 'programmer032', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'programmer032@example.com', '13800001032', '程序员', 'React Native,Expo,移动开发', '学习原生开发,掌握性能优化', 0, '2024-01-02 08:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (33, 'programmer033', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'programmer033@example.com', '13800001033', '程序员', 'Xamarin,C#,跨平台', '学习.NET MAUI,提升企业应用开发', 0, '2024-01-02 09:00:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (34, 'programmer034', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'programmer034@example.com', '13800001034', '程序员', 'Ionic,Angular,混合开发', '学习Capacitor,掌握插件开发', 0, '2024-01-02 09:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (35, 'programmer035', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'programmer035@example.com', '13800001035', '程序员', 'Cordova,PhoneGap,HTML5', '学习Web Components,提升前端架构', 0, '2024-01-02 10:00:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (36, 'programmer036', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'programmer036@example.com', '13800001036', '程序员', 'Electron,桌面应用,Node.js', '学习Tauri,掌握轻量级桌面开发', 0, '2024-01-02 10:30:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (37, 'programmer037', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'programmer037@example.com', '13800001037', '程序员', 'Qt,C++,跨平台GUI', '学习GTK,提升Linux桌面开发', 0, '2024-01-02 11:00:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (38, 'programmer038', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'programmer038@example.com', '13800001038', '程序员', 'WPF,XAML,Windows开发', '学习UWP,掌握Windows生态', 0, '2024-01-02 11:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (39, 'programmer039', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'programmer039@example.com', '13800001039', '程序员', 'JavaFX,Swing,Java GUI', '学习Spring Boot桌面应用,提升企业级开发', 0, '2024-01-02 12:00:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (40, 'programmer040', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'programmer040@example.com', '13800001040', '程序员', 'Tkinter,PyQt,Python GUI', '学习Kivy,掌握移动端Python开发', 0, '2024-01-02 12:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (41, 'programmer041', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'programmer041@example.com', '13800001041', '程序员', 'OpenGL,Vulkan,图形编程', '学习计算着色器,提升GPU编程', 0, '2024-01-02 13:00:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (42, 'programmer042', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'programmer042@example.com', '13800001042', '程序员', 'DirectX,HLSL,游戏引擎', '学习Unreal Engine,掌握AAA游戏开发', 0, '2024-01-02 13:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (43, 'programmer043', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'programmer043@example.com', '13800001043', '程序员', 'Metal,iOS图形,移动GPU', '学习ARKit,提升AR应用开发', 0, '2024-01-02 14:00:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (44, 'programmer044', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'programmer044@example.com', '13800001044', '程序员', 'WebGL,Three.js,Web3D', '学习WebXR,掌握沉浸式Web体验', 0, '2024-01-02 14:30:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (45, 'programmer045', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'programmer045@example.com', '13800001045', '程序员', 'CUDA,OpenCL,并行计算', '学习分布式计算,提升高性能计算', 0, '2024-01-02 15:00:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (46, 'programmer046', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'programmer046@example.com', '13800001046', '程序员', 'MPI,OpenMP,超算编程', '学习量子算法,掌握前沿计算技术', 0, '2024-01-02 15:30:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (47, 'programmer047', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'programmer047@example.com', '13800001047', '程序员', 'FPGA,Verilog,硬件描述', '学习芯片设计,提升底层硬件理解', 0, '2024-01-02 16:00:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (48, 'programmer048', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'programmer048@example.com', '13800001048', '程序员', 'Arduino,树莓派,物联网', '学习边缘AI,掌握智能硬件开发', 0, '2024-01-02 16:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (49, 'programmer049', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'programmer049@example.com', '13800001049', '程序员', 'ROS,机器人,自动化', '学习计算机视觉,提升机器人感知', 0, '2024-01-02 17:00:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (50, 'programmer050', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'programmer050@example.com', '13800001050', '程序员', 'SLAM,路径规划,导航算法', '学习强化学习,掌握智能决策系统', 0, '2024-01-02 17:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (51, 'designer001', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'designer001@example.com', '13800002001', '设计师', 'Photoshop,Illustrator,UI设计', '学习UX设计,提升用户体验设计能力', 0, '2024-01-03 08:00:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (52, 'designer002', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'designer002@example.com', '13800002002', '设计师', 'Sketch,Figma,原型设计', '掌握设计系统,学习品牌设计', 0, '2024-01-03 08:30:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (53, 'designer003', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'designer003@example.com', '13800002003', '设计师', 'After Effects,动效设计,视频剪辑', '学习3D动画,提升视觉表现力', 0, '2024-01-03 09:00:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (54, 'designer004', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'designer004@example.com', '13800002004', '设计师', 'Cinema 4D,3D建模,渲染', '学习VR设计,掌握沉浸式体验设计', 0, '2024-01-03 09:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (55, 'designer005', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'designer005@example.com', '13800002005', '设计师', 'Blender,开源3D,雕刻', '学习程序化建模,提升技术美术能力', 0, '2024-01-03 10:00:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (56, 'designer006', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'designer006@example.com', '13800002006', '设计师', 'Maya,角色建模,动画', '学习游戏美术,掌握实时渲染技术', 0, '2024-01-03 10:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (57, 'designer007', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'designer007@example.com', '13800002007', '设计师', 'ZBrush,数字雕刻,角色设计', '学习概念艺术,提升创意表达能力', 0, '2024-01-03 11:00:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (58, 'designer008', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'designer008@example.com', '13800002008', '设计师', 'Substance Painter,材质绘制,PBR', '学习实时光照,掌握次世代游戏美术', 0, '2024-01-03 11:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (59, 'designer009', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'designer009@example.com', '13800002009', '设计师', 'Houdini,程序化建模,特效', '学习技术美术,提升工具开发能力', 0, '2024-01-03 12:00:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (60, 'designer010', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'designer010@example.com', '13800002010', '设计师', 'Nuke,合成,后期制作', '学习色彩科学,掌握专业调色技术', 0, '2024-01-03 12:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (61, 'designer011', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'designer011@example.com', '13800002011', '设计师', 'DaVinci Resolve,调色,剪辑', '学习电影制作,提升叙事能力', 0, '2024-01-03 13:00:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (62, 'designer012', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'designer012@example.com', '13800002012', '设计师', 'Premiere Pro,Final Cut,视频编辑', '学习直播技术,掌握实时制作流程', 0, '2024-01-03 13:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (63, 'designer013', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'designer013@example.com', '13800002013', '设计师', 'Audition,音频处理,声音设计', '学习交互音效,提升多媒体设计能力', 0, '2024-01-03 14:00:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (64, 'designer014', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'designer014@example.com', '13800002014', '设计师', 'Logic Pro,音乐制作,编曲', '学习游戏音乐,掌握自适应音频技术', 0, '2024-01-03 14:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (65, 'designer015', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'designer015@example.com', '13800002015', '设计师', 'Pro Tools,专业录音,混音', '学习空间音频,提升沉浸式音频设计', 0, '2024-01-03 15:00:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (66, 'designer016', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'designer016@example.com', '13800002016', '设计师', 'InDesign,版式设计,印刷', '学习数字出版,掌握电子书制作技术', 0, '2024-01-03 15:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (67, 'designer017', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'designer017@example.com', '13800002017', '设计师', 'Lightroom,摄影后期,调色', '学习商业摄影,提升视觉营销能力', 0, '2024-01-03 16:00:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (68, 'designer018', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'designer018@example.com', '13800002018', '设计师', 'Capture One,RAW处理,色彩管理', '学习时尚摄影,掌握人像修图技术', 0, '2024-01-03 16:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (69, 'designer019', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'designer019@example.com', '13800002019', '设计师', 'Procreate,数字绘画,插画', '学习概念设计,提升创意思维能力', 0, '2024-01-03 17:00:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (70, 'designer020', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'designer020@example.com', '13800002020', '设计师', 'Clip Studio Paint,漫画,动画', '学习角色设计,掌握故事板制作技术', 0, '2024-01-03 17:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (71, 'designer021', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'designer021@example.com', '13800002021', '设计师', 'Framer,交互原型,动效设计', '学习用户研究,提升设计决策能力', 0, '2024-01-03 18:00:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (72, 'designer022', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'designer022@example.com', '13800002022', '设计师', 'Principle,动画原型,微交互', '学习服务设计,掌握系统性设计思维', 0, '2024-01-03 18:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (73, 'designer023', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'designer023@example.com', '13800002023', '设计师', 'ProtoPie,高级交互,传感器', '学习物理计算,提升智能交互设计', 0, '2024-01-03 19:00:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (74, 'designer024', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'designer024@example.com', '13800002024', '设计师', 'Origami,Facebook原型,复杂交互', '学习机器学习设计,掌握AI辅助设计', 0, '2024-01-03 19:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (75, 'designer025', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'designer025@example.com', '13800002025', '设计师', 'Axure,产品原型,文档设计', '学习产品管理,提升商业设计思维', 0, '2024-01-03 20:00:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (76, 'designer026', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'designer026@example.com', '13800002026', '设计师', 'Miro,协作设计,工作坊', '学习设计领导力,掌握团队协作技能', 0, '2024-01-03 20:30:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (77, 'designer027', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'designer027@example.com', '13800002027', '设计师', 'Mural,视觉思维,创意工具', '学习设计战略,提升商业影响力', 0, '2024-01-03 21:00:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (78, 'designer028', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'designer028@example.com', '13800002028', '设计师', 'Notion,文档设计,信息架构', '学习内容策略,掌握信息设计技能', 0, '2024-01-03 21:30:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (79, 'designer029', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'designer029@example.com', '13800002029', '设计师', 'Webflow,无代码设计,响应式', '学习前端技术,提升设计实现能力', 0, '2024-01-03 22:00:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (80, 'designer030', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'designer030@example.com', '13800002030', '设计师', 'Bubble,应用构建,可视化编程', '学习设计系统,掌握规模化设计方法', 0, '2024-01-03 22:30:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (81, 'pm001', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'pm001@example.com', '13800003001', '产品经理', '产品规划,用户研究,数据分析', '学习增长黑客,提升产品运营能力', 0, '2024-01-04 08:00:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (82, 'pm002', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'pm002@example.com', '13800003002', '产品经理', 'Axure,原型设计,需求分析', '掌握敏捷开发,学习Scrum管理', 0, '2024-01-04 08:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (83, 'pm003', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'pm003@example.com', '13800003003', '产品经理', 'SQL,数据分析,用户行为分析', '学习机器学习,提升数据驱动决策', 0, '2024-01-04 09:00:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (84, 'pm004', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'pm004@example.com', '13800003004', '产品经理', 'Google Analytics,用户画像,转化分析', '学习A/B测试,掌握实验设计方法', 0, '2024-01-04 09:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (85, 'pm005', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'pm005@example.com', '13800003005', '产品经理', 'Mixpanel,事件追踪,漏斗分析', '学习增长模型,提升用户留存策略', 0, '2024-01-04 10:00:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (86, 'pm006', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'pm006@example.com', '13800003006', '产品经理', 'Amplitude,用户旅程,行为分析', '学习产品心理学,掌握用户激励机制', 0, '2024-01-04 10:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (87, 'pm007', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'pm007@example.com', '13800003007', '产品经理', 'Hotjar,热力图,用户录屏', '学习用户体验研究,提升定性分析能力', 0, '2024-01-04 11:00:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (88, 'pm008', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'pm008@example.com', '13800003008', '产品经理', 'Tableau,数据可视化,商业智能', '学习预测分析,掌握趋势预测方法', 0, '2024-01-04 11:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (89, 'pm009', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'pm009@example.com', '13800003009', '产品经理', 'Power BI,报表制作,KPI监控', '学习OKR管理,提升目标设定能力', 0, '2024-01-04 12:00:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (90, 'pm010', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'pm010@example.com', '13800003010', '产品经理', 'Looker,数据建模,自助分析', '学习商业分析,掌握市场研究方法', 0, '2024-01-04 12:30:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (91, 'pm011', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'pm011@example.com', '13800003011', '产品经理', 'Jira,项目管理,敏捷开发', '学习产品路线图,提升战略规划能力', 0, '2024-01-04 13:00:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (92, 'pm012', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'pm012@example.com', '13800003012', '产品经理', 'Confluence,文档管理,知识协作', '学习技术产品管理,掌握API设计', 0, '2024-01-04 13:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (93, 'pm013', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'pm013@example.com', '13800003013', '产品经理', 'Slack,团队协作,沟通管理', '学习跨部门协作,提升影响力技能', 0, '2024-01-04 14:00:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (94, 'pm014', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'pm014@example.com', '13800003014', '产品经理', 'Asana,任务管理,工作流程', '学习变更管理,掌握组织转型方法', 0, '2024-01-04 14:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (95, 'pm015', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'pm015@example.com', '13800003015', '产品经理', 'Monday.com,项目协调,资源管理', '学习产品营销,提升Go-to-Market策略', 0, '2024-01-04 15:00:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (96, 'pm016', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'pm016@example.com', '13800003016', '产品经理', 'Notion,知识管理,流程文档', '学习内容策略,掌握用户教育方法', 0, '2024-01-04 15:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (97, 'pm017', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'pm017@example.com', '13800003017', '产品经理', 'Airtable,数据管理,自动化工作流', '学习无代码开发,提升快速原型能力', 0, '2024-01-04 16:00:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (98, 'pm018', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'pm018@example.com', '13800003018', '产品经理', 'Zapier,自动化集成,工作流优化', '学习AI产品管理,掌握智能化产品设计', 0, '2024-01-04 16:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (99, 'pm019', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'pm019@example.com', '13800003019', '产品经理', 'Intercom,客户支持,用户反馈', '学习客户成功管理,提升用户满意度', 0, '2024-01-04 17:00:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (100, 'pm020', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'pm020@example.com', '13800003020', '产品经理', 'Zendesk,工单系统,服务管理', '学习产品运营,掌握社区建设方法', 0, '2024-01-04 17:30:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (101, 'pm021', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'pm021@example.com', '13800003021', '产品经理', 'Salesforce,CRM管理,销售流程', '学习B2B产品管理,提升企业级产品能力', 0, '2024-01-04 18:00:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (102, 'pm022', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'pm022@example.com', '13800003022', '产品经理', 'HubSpot,营销自动化,潜客管理', '学习增长策略,掌握病毒式营销方法', 0, '2024-01-04 18:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (103, 'pm023', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'pm023@example.com', '13800003023', '产品经理', 'Mailchimp,邮件营销,用户触达', '学习内容营销,提升品牌传播能力', 0, '2024-01-04 19:00:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (104, 'pm024', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'pm024@example.com', '13800003024', '产品经理', 'Segment,数据集成,用户标签', '学习隐私保护,掌握合规产品设计', 0, '2024-01-04 19:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (105, 'pm025', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'pm025@example.com', '13800003025', '产品经理', 'Optimizely,A/B测试,实验平台', '学习产品创新,提升0到1产品能力', 0, '2024-01-04 20:00:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (106, 'pm026', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'pm026@example.com', '13800003026', '产品经理', 'LaunchDarkly,功能开关,灰度发布', '学习平台产品,掌握生态系统设计', 0, '2024-01-04 20:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (107, 'pm027', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'pm027@example.com', '13800003027', '产品经理', 'Pendo,产品分析,用户引导', '学习国际化产品,提升全球化思维', 0, '2024-01-04 21:00:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (108, 'pm028', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'pm028@example.com', '13800003028', '产品经理', 'FullStory,用户会话,行为洞察', '学习产品安全,掌握风险管理方法', 0, '2024-01-04 21:30:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (109, 'pm029', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'pm029@example.com', '13800003029', '产品经理', 'UserVoice,用户反馈,需求收集', '学习产品合规,提升法律风险意识', 0, '2024-01-04 22:00:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (110, 'pm030', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'pm030@example.com', '13800003030', '产品经理', 'ProductBoard,产品路线图,优先级管理', '学习产品领导力,掌握团队管理技能', 0, '2024-01-04 22:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (111, 'operator001', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'operator001@example.com', '13800004001', '运营专员', '内容运营,社群管理,活动策划', '学习数据运营,提升精细化运营能力', 0, '2024-01-05 08:00:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (112, 'operator002', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'operator002@example.com', '13800004002', '运营专员', '新媒体运营,微信公众号,短视频', '学习直播运营,掌握实时互动技巧', 0, '2024-01-05 08:30:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (113, 'operator003', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'operator003@example.com', '13800004003', '运营专员', '用户运营,会员体系,积分系统', '学习增长运营,提升用户获取能力', 0, '2024-01-05 09:00:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (114, 'operator004', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'operator004@example.com', '13800004004', '运营专员', '电商运营,商品管理,促销活动', '学习供应链管理,掌握库存优化', 0, '2024-01-05 09:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (115, 'operator005', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'operator005@example.com', '13800004005', '运营专员', '渠道运营,合作伙伴,BD拓展', '学习商务谈判,提升合作洽谈技巧', 0, '2024-01-05 10:00:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (116, 'operator006', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'operator006@example.com', '13800004006', '运营专员', '品牌运营,公关传播,危机处理', '学习品牌策略,掌握品牌定位方法', 0, '2024-01-05 10:30:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (117, 'operator007', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'operator007@example.com', '13800004007', '运营专员', '市场运营,竞品分析,行业研究', '学习市场调研,提升数据收集能力', 0, '2024-01-05 11:00:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (118, 'operator008', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'operator008@example.com', '13800004008', '运营专员', '广告投放,SEM,信息流广告', '学习程序化广告,掌握RTB投放技术', 0, '2024-01-05 11:30:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (119, 'operator009', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'operator009@example.com', '13800004009', '运营专员', 'SEO优化,关键词策略,内容营销', '学习技术SEO,提升网站性能优化', 0, '2024-01-05 12:00:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (120, 'operator010', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'operator010@example.com', '13800004010', '运营专员', '数据分析,Excel,SQL查询', '学习Python数据分析,掌握机器学习应用', 0, '2024-01-05 12:30:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (121, 'operator011', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'operator011@example.com', '13800004011', '运营专员', '客服运营,工单处理,满意度管理', '学习智能客服,掌握AI对话系统', 0, '2024-01-05 13:00:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (122, 'operator012', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'operator012@example.com', '13800004012', '运营专员', '游戏运营,版本更新,玩家社区', '学习游戏数值策划,提升平衡性设计', 0, '2024-01-05 13:30:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (123, 'operator013', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'operator013@example.com', '13800004013', '运营专员', '直播运营,主播管理,内容审核', '学习MCN运营,掌握网红经济模式', 0, '2024-01-05 14:00:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (124, 'operator014', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'operator014@example.com', '13800004014', '运营专员', '知识付费,课程运营,学员管理', '学习教育科技,提升在线教学能力', 0, '2024-01-05 14:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (125, 'operator015', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'operator015@example.com', '13800004015', '运营专员', '金融产品运营,风控管理,合规审查', '学习区块链金融,掌握DeFi运营模式', 0, '2024-01-05 15:00:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (126, 'operator016', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'operator016@example.com', '13800004016', '运营专员', '医疗健康运营,患者管理,医生资源', '学习数字医疗,提升健康管理服务', 0, '2024-01-05 15:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (127, 'operator017', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'operator017@example.com', '13800004017', '运营专员', '旅游产品运营,目的地营销,用户体验', '学习智慧旅游,掌握VR/AR旅游应用', 0, '2024-01-05 16:00:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (128, 'operator018', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'operator018@example.com', '13800004018', '运营专员', '房产运营,房源管理,经纪人培训', '学习PropTech,提升房产科技应用', 0, '2024-01-05 16:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (129, 'operator019', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'operator019@example.com', '13800004019', '运营专员', '汽车后市场,车主服务,维修保养', '学习智能汽车,掌握车联网运营', 0, '2024-01-05 17:00:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (130, 'operator020', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'operator020@example.com', '13800004020', '运营专员', '母婴产品运营,育儿社区,专家咨询', '学习儿童教育,提升亲子产品设计', 0, '2024-01-05 17:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (131, 'operator021', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'operator021@example.com', '13800004021', '运营专员', '宠物服务运营,宠物社交,健康管理', '学习宠物科技,掌握智能硬件运营', 0, '2024-01-05 18:00:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (132, 'operator022', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'operator022@example.com', '13800004022', '运营专员', '美妆护肤运营,达人合作,种草营销', '学习美妆科技,提升个性化推荐', 0, '2024-01-05 18:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (133, 'operator023', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'operator023@example.com', '13800004023', '运营专员', '服装时尚运营,潮流趋势,搭配推荐', '学习时尚科技,掌握AI搭配算法', 0, '2024-01-05 19:00:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (134, 'operator024', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'operator024@example.com', '13800004024', '运营专员', '体育健身运营,运动社区,健身指导', '学习运动科学,提升智能健身服务', 0, '2024-01-05 19:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (135, 'operator025', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'operator025@example.com', '13800004025', '运营专员', '音乐娱乐运营,版权管理,艺人推广', '学习音乐科技,掌握AI音乐创作', 0, '2024-01-05 20:00:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (136, 'operator026', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'operator026@example.com', '13800004026', '运营专员', '阅读文学运营,作者扶持,IP开发', '学习数字出版,提升内容变现能力', 0, '2024-01-05 20:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (137, 'operator027', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'operator027@example.com', '13800004027', '运营专员', '视频内容运营,创作者生态,算法优化', '学习短视频技术,掌握推荐算法', 0, '2024-01-05 21:00:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (138, 'operator028', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'operator028@example.com', '13800004028', '运营专员', '社交产品运营,关系链管理,社区治理', '学习社交心理学,提升用户粘性', 0, '2024-01-05 21:30:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (139, 'operator029', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'operator029@example.com', '13800004029', '运营专员', '工具产品运营,效率优化,企业服务', '学习SaaS运营,掌握B端产品策略', 0, '2024-01-05 22:00:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (140, 'operator030', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'operator030@example.com', '13800004030', '运营专员', '国际化运营,本地化策略,跨文化管理', '学习全球化运营,提升国际市场拓展', 0, '2024-01-05 22:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (141, 'sales001', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'sales001@example.com', '13800005001', '销售', '客户开发,商务谈判,销售管理', '学习大客户销售,提升成交转化率', 0, '2024-01-06 08:00:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (142, 'sales002', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'sales002@example.com', '13800005002', '销售', 'CRM系统,销售流程,客户关系', '学习数字化销售,掌握在线获客技巧', 0, '2024-01-06 08:30:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (143, 'sales003', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'sales003@example.com', '13800005003', '销售', '电话销售,邮件营销,社交销售', '学习内容营销,提升个人品牌影响力', 0, '2024-01-06 09:00:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (144, 'sales004', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'sales004@example.com', '13800005004', '销售', '渠道销售,合作伙伴,分销管理', '学习渠道策略,掌握生态合作模式', 0, '2024-01-06 09:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (145, 'sales005', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'sales005@example.com', '13800005005', '销售', '技术销售,解决方案,售前支持', '学习顾问式销售,提升专业咨询能力', 0, '2024-01-06 10:00:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (146, 'sales006', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'sales006@example.com', '13800005006', '销售', '零售销售,门店管理,客户服务', '学习新零售模式,掌握O2O销售技巧', 0, '2024-01-06 10:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (147, 'sales007', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'sales007@example.com', '13800005007', '销售', '房产销售,置业顾问,客户维护', '学习房产投资,提升专业分析能力', 0, '2024-01-06 11:00:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (148, 'sales008', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'sales008@example.com', '13800005008', '销售', '汽车销售,金融产品,保险服务', '学习汽车技术,掌握新能源车销售', 0, '2024-01-06 11:30:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (149, 'sales009', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'sales009@example.com', '13800005009', '销售', '保险销售,理财规划,风险评估', '学习财富管理,提升投资咨询能力', 0, '2024-01-06 12:00:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (150, 'sales010', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'sales010@example.com', '13800005010', '销售', '医疗器械销售,临床支持,学术推广', '学习医学知识,掌握循证医学方法', 0, '2024-01-06 12:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (151, 'sales011', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'sales011@example.com', '13800005011', '销售', '教育培训销售,课程顾问,学员服务', '学习教育心理学,提升咨询沟通技巧', 0, '2024-01-06 13:00:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (152, 'sales012', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'sales012@example.com', '13800005012', '销售', '软件销售,SaaS产品,企业服务', '学习云计算技术,掌握数字化转型咨询', 0, '2024-01-06 13:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (153, 'sales013', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'sales013@example.com', '13800005013', '销售', '工业设备销售,技术方案,项目管理', '学习工业4.0,提升智能制造咨询', 0, '2024-01-06 14:00:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (154, 'sales014', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'sales014@example.com', '13800005014', '销售', '化工产品销售,供应链,质量管理', '学习绿色化工,掌握可持续发展理念', 0, '2024-01-06 14:30:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (155, 'sales015', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'sales015@example.com', '13800005015', '销售', '农产品销售,食品安全,供应链管理', '学习农业科技,提升现代农业知识', 0, '2024-01-06 15:00:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (156, 'sales016', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'sales016@example.com', '13800005016', '销售', '奢侈品销售,品牌管理,客户体验', '学习奢侈品文化,掌握高端服务技巧', 0, '2024-01-06 15:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (157, 'sales017', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'sales017@example.com', '13800005017', '销售', '跨境电商,国际贸易,外汇管理', '学习国际商务,提升跨文化沟通能力', 0, '2024-01-06 16:00:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (158, 'sales018', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'sales018@example.com', '13800005018', '销售', '直播带货,网红经济,粉丝运营', '学习短视频制作,掌握内容创作技巧', 0, '2024-01-06 16:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (159, 'sales019', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'sales019@example.com', '13800005019', '销售', '会展销售,活动策划,商务接待', '学习会展经济,提升活动执行能力', 0, '2024-01-06 17:00:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (160, 'sales020', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'sales020@example.com', '13800005020', '销售', '旅游销售,定制服务,目的地推广', '学习旅游规划,掌握个性化服务设计', 0, '2024-01-06 17:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (161, 'sales021', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'sales021@example.com', '13800005021', '销售', '健身器材销售,健康咨询,运动指导', '学习运动科学,提升健康管理专业度', 0, '2024-01-06 18:00:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (162, 'sales022', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'sales022@example.com', '13800005022', '销售', '美容产品销售,皮肤管理,形象设计', '学习美容科学,掌握个人形象咨询', 0, '2024-01-06 18:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (163, 'sales023', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'sales023@example.com', '13800005023', '销售', '珠宝销售,宝石鉴定,收藏投资', '学习珠宝知识,提升鉴赏评估能力', 0, '2024-01-06 19:00:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (164, 'sales024', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'sales024@example.com', '13800005024', '销售', '艺术品销售,拍卖行业,文化投资', '学习艺术史,掌握文化产业运营', 0, '2024-01-06 19:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (165, 'sales025', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'sales025@example.com', '13800005025', '销售', '酒类销售,品酒师,餐饮搭配', '学习酒文化,提升品鉴专业技能', 0, '2024-01-06 20:00:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (166, 'sales026', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'sales026@example.com', '13800005026', '销售', '茶叶销售,茶艺师,文化传播', '学习茶道文化,掌握传统文化推广', 0, '2024-01-06 20:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (167, 'sales027', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'sales027@example.com', '13800005027', '销售', '母婴用品销售,育儿咨询,早教服务', '学习儿童发展,提升育儿指导专业度', 0, '2024-01-06 21:00:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (168, 'sales028', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'sales028@example.com', '13800005028', '销售', '宠物用品销售,宠物护理,行为训练', '学习动物行为学,掌握宠物训练技巧', 0, '2024-01-06 21:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (169, 'sales029', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'sales029@example.com', '13800005029', '销售', '环保产品销售,绿色技术,可持续发展', '学习环保科技,提升生态文明理念', 0, '2024-01-06 22:00:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (170, 'sales030', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'sales030@example.com', '13800005030', '销售', '智能家居销售,物联网,家庭自动化', '学习智能科技,掌握未来生活方式', 0, '2024-01-06 22:30:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (171, 'student001', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'student001@example.com', '13800006001', '学生', '计算机科学,编程,算法', '准备技术面试,提升编程能力', 0, '2024-01-07 08:00:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (172, 'student002', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'student002@example.com', '13800006002', '学生', '数据科学,机器学习,统计学', '学习深度学习,参与科研项目', 0, '2024-01-07 08:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (173, 'student003', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'student003@example.com', '13800006003', '学生', '工商管理,市场营销,商业分析', '准备MBA申请,提升商业思维', 0, '2024-01-07 09:00:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (174, 'student004', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'student004@example.com', '13800006004', '学生', '金融学,投资理财,风险管理', '考取CFA证书,学习量化投资', 0, '2024-01-07 09:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (175, 'student005', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'student005@example.com', '13800006005', '学生', '设计学,视觉传达,用户体验', '建立作品集,准备设计比赛', 0, '2024-01-07 10:00:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (176, 'student006', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'student006@example.com', '13800006006', '学生', '英语专业,翻译,跨文化交流', '考取专业证书,提升口语能力', 0, '2024-01-07 10:30:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (177, 'student007', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'student007@example.com', '13800006007', '学生', '法学,法律实务,司法考试', '准备司法考试,学习法律实践', 0, '2024-01-07 11:00:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (178, 'student008', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'student008@example.com', '13800006008', '学生', '医学,临床实习,医学研究', '准备执业医师考试,积累临床经验', 0, '2024-01-07 11:30:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (179, 'student009', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'student009@example.com', '13800006009', '学生', '教育学,心理学,教学方法', '考取教师资格证,学习教育技术', 0, '2024-01-07 12:00:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (180, 'student010', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'student010@example.com', '13800006010', '学生', '新闻传播,媒体运营,内容创作', '建立个人媒体品牌,学习新媒体技术', 0, '2024-01-07 12:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (181, 'student011', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'student011@example.com', '13800006011', '学生', '建筑学,城市规划,设计软件', '参与设计竞赛,学习绿色建筑技术', 0, '2024-01-07 13:00:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (182, 'student012', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'student012@example.com', '13800006012', '学生', '机械工程,自动化,工业设计', '学习智能制造,参与工程项目', 0, '2024-01-07 13:30:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (183, 'student013', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'student013@example.com', '13800006013', '学生', '电子工程,通信技术,嵌入式', '学习5G技术,参与电子设计竞赛', 0, '2024-01-07 14:00:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (184, 'student014', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'student014@example.com', '13800006014', '学生', '化学工程,材料科学,实验研究', '学习新材料技术,参与科研实验', 0, '2024-01-07 14:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (185, 'student015', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'student015@example.com', '13800006015', '学生', '生物技术,基因工程,生物信息', '学习生物技术,参与生命科学研究', 0, '2024-01-07 15:00:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (186, 'student016', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'student016@example.com', '13800006016', '学生', '环境科学,可持续发展,环保技术', '学习环保技术,参与环境保护项目', 0, '2024-01-07 15:30:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (187, 'student017', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'student017@example.com', '13800006017', '学生', '物理学,理论物理,实验物理', '学习量子物理,参与物理实验研究', 0, '2024-01-07 16:00:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (188, 'student018', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'student018@example.com', '13800006018', '学生', '数学,应用数学,数学建模', '参与数学竞赛,学习数学应用', 0, '2024-01-07 16:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (189, 'student019', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'student019@example.com', '13800006019', '学生', '经济学,宏观经济,计量经济', '学习经济分析,参与经济研究项目', 0, '2024-01-07 17:00:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (190, 'student020', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'student020@example.com', '13800006020', '学生', '社会学,社会调研,数据分析', '学习社会研究方法,参与社会调查', 0, '2024-01-07 17:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (191, 'student021', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'student021@example.com', '13800006021', '学生', '哲学,逻辑思维,批判性思考', '学习哲学思辨,提升思维能力', 0, '2024-01-07 18:00:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (192, 'student022', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'student022@example.com', '13800006022', '学生', '历史学,文献研究,史学方法', '学习史学研究,参与历史文献整理', 0, '2024-01-07 18:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (193, 'student023', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'student023@example.com', '13800006023', '学生', '文学,创意写作,文学批评', '学习文学创作,参与文学创作比赛', 0, '2024-01-07 19:00:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (194, 'student024', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'student024@example.com', '13800006024', '学生', '艺术学,美术,艺术史', '学习艺术创作,参与艺术展览', 0, '2024-01-07 19:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (195, 'student025', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'student025@example.com', '13800006025', '学生', '音乐学,音乐制作,音乐理论', '学习音乐创作,参与音乐演出', 0, '2024-01-07 20:00:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (196, 'student026', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'student026@example.com', '13800006026', '学生', '体育学,运动训练,体育管理', '学习运动科学,参与体育竞赛', 0, '2024-01-07 20:30:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (197, 'student027', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'student027@example.com', '13800006027', '学生', '农学,现代农业,农业技术', '学习现代农业技术,参与农业实践', 0, '2024-01-07 21:00:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (198, 'student028', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'student028@example.com', '13800006028', '学生', '林学,森林保护,生态学', '学习生态保护,参与环保实践', 0, '2024-01-07 21:30:00', '2025-08-20 18:43:08', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (199, 'student029', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'student029@example.com', '13800006029', '学生', '地理学,GIS技术,遥感技术', '学习地理信息技术,参与地理调查', 0, '2024-01-07 22:00:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (200, 'student030', '$2a$12$LQv3c1yqBwEHxPuNYkFNWONSRg5aMcnrBOKgO8lds2og/oc9wgl/2', 'student030@example.com', '13800006030', '学生', '天文学,天体物理,空间科学', '学习天文观测,参与天文研究项目', 0, '2024-01-07 22:30:00', '2025-08-20 18:43:09', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (201, '123456', '$2a$10$FM.yv15iACeabG7JwUQBjOC501XdMLW7blE7/PA47CVeX0kKh2uym', '3069736731@qq.com', '18099488938', '软件工程师', 'Java,Spring Boot,MySQL,Redis', '学习微服务架构,提升系统设计能力', 0, '2025-08-20 10:48:32', '2025-08-20 20:09:37', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (202, 'testuser', '$2a$10$FM.yv15iACeabG7JwUQBjOC501XdMLW7blE7/PA47CVeX0kKh2uym', null, '18199488938', null, null, null, 0, '2025-08-20 11:04:42', '2025-08-20 11:04:42', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (203, '12345678', '$2a$10$C5.KE57DFwwAxfE8mLmyZuAuKJpBYn5dy3xx0fKy9629YoB3Wz21q', null, '18099488935', null, null, null, 0, '2025-08-20 14:24:47', '2025-08-20 14:24:47', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (204, 'doctor1', '$2a$10$ri6VH7ZhVOZtYOiWYXho/.S4rLA4e0fiQivgZIG7oJvNbwDNvf6Au', '3069736730@qq.com', '18099488934', '软件工程师', '', '', 1, '2025-08-20 14:41:28', '2025-08-20 20:09:54', 0);
INSERT INTO bitgain.user (id, username, password, email, phone, profession, skills, goals, email_subscribe, create_time, update_time, deleted) VALUES (205, 'LuciusWan', '$2a$10$rCJfu1xugdQx1oc7zkLq2OItaqCxAyMTFSRiN6lTGgXqGCfW4P1uu', '12345678901@111.com', '18099488947', 'Java开发', '', '', 1, '2025-08-20 20:13:55', '2025-08-20 20:14:38', 0);
create table fixed_task
(
id bigint auto_increment comment '任务ID,主键'
primary key,
user_id bigint not null comment '用户ID,外键',
title varchar(200) not null comment '任务标题',
start_time datetime not null comment '开始时间',
end_time datetime not null comment '结束时间',
description text null comment '任务描述',
status varchar(20) default 'pending' not null comment '状态:pending-待开始,completed-已完成,abandoned-已放弃',
create_time datetime default CURRENT_TIMESTAMP not null comment '创建时间',
update_time datetime default CURRENT_TIMESTAMP not null on update CURRENT_TIMESTAMP comment '更新时间',
deleted tinyint(1) default 0 not null comment '软删除标记:0-未删除,1-已删除',
constraint fk_fixed_task_user
foreign key (user_id) references user (id)
on delete cascade
)
comment '固定任务表' collate = utf8mb4_unicode_ci;
create index idx_deleted
on fixed_task (deleted);
create index idx_end_time
on fixed_task (end_time);
create index idx_start_time
on fixed_task (start_time);
create index idx_user_id
on fixed_task (user_id);
create index idx_user_time
on fixed_task (user_id, start_time, end_time);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (1, 1, '晨间锻炼', '2024-01-15 07:00:00', '2024-01-15 08:00:00', '每日晨跑,保持身体健康', 'pending', '2025-08-20 11:17:10', '2025-08-20 11:17:10', 0);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (2, 1, '工作会议', '2024-01-15 09:00:00', '2024-01-15 10:30:00', '团队周例会,讨论项目进展', 'pending', '2025-08-20 11:17:10', '2025-08-20 11:17:10', 0);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (3, 2, '英语学习', '2024-01-15 19:00:00', '2024-01-15 20:00:00', '每日英语口语练习', 'pending', '2025-08-20 11:17:10', '2025-08-20 11:17:10', 0);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (4, 2, '项目开发', '2024-01-15 14:00:00', '2024-01-15 17:00:00', '完成用户管理模块开发', 'pending', '2025-08-20 11:17:10', '2025-08-20 11:17:10', 0);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (5, 3, '瑜伽课程', '2024-01-15 18:30:00', '2024-01-15 19:30:00', '每周瑜伽课程,放松身心', 'pending', '2025-08-20 11:17:10', '2025-08-20 11:17:10', 0);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (6, 3, '读书时间', '2024-01-15 21:00:00', '2024-01-15 22:00:00', '睡前阅读,提升自我', 'pending', '2025-08-20 11:17:10', '2025-08-20 11:17:10', 0);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (7, 4, '客户拜访', '2024-01-16 10:00:00', '2024-01-16 12:00:00', '拜访重要客户,洽谈合作', 'pending', '2025-08-20 11:17:10', '2025-08-20 11:17:10', 0);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (8, 4, '健身训练', '2024-01-15 17:30:00', '2024-01-15 18:30:00', '每周三次健身训练', 'pending', '2025-08-20 11:17:10', '2025-08-20 11:17:10', 0);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (9, 5, '产品设计', '2024-01-15 13:00:00', '2024-01-15 16:00:00', '设计新产品原型界面', 'pending', '2025-08-20 11:17:10', '2025-08-20 11:17:10', 0);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (10, 5, '冥想练习', '2024-01-15 06:30:00', '2024-01-15 07:00:00', '晨间冥想,保持内心平静', 'pending', '2025-08-20 11:17:10', '2025-08-20 11:17:10', 0);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (11, 6, '数据分析', '2024-01-15 15:00:00', '2024-01-15 17:00:00', '分析用户行为数据报告', 'pending', '2025-08-20 11:17:10', '2025-08-20 11:17:10', 0);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (12, 6, '钢琴练习', '2024-01-15 20:00:00', '2024-01-15 21:00:00', '每日钢琴练习,提升音乐素养', 'pending', '2025-08-20 11:17:10', '2025-08-20 11:17:10', 0);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (13, 201, '销售培训', '2024-01-16 14:00:00', '2024-01-16 16:00:00', '月度销售技能培训', 'pending', '2025-08-20 11:17:10', '2025-08-20 11:39:41', 0);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (14, 201, '跑步锻炼', '2024-01-15 06:00:00', '2024-01-15 07:00:00', '晨跑锻炼,增强体质', 'completed', '2025-08-20 11:17:10', '2025-08-20 16:47:03', 0);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (15, 201, '论文写作', '2024-01-15 19:30:00', '2024-01-15 22:00:00', '完成毕业论文第三章', 'pending', '2025-08-20 11:17:10', '2025-08-20 11:39:41', 0);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (16, 201, '编程学习', '2024-01-15 14:30:00', '2024-01-15 16:30:00', '学习Spring Boot框架', 'pending', '2025-08-20 11:17:10', '2025-08-20 11:39:41', 0);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (17, 201, '市场调研', '2024-01-16 09:00:00', '2024-01-16 11:30:00', '调研竞品市场情况', 'pending', '2025-08-20 11:17:10', '2025-08-20 11:39:41', 0);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (18, 201, '游泳训练', '2024-01-15 18:00:00', '2024-01-15 19:00:00', '每周游泳训练,全身运动', 'pending', '2025-08-20 11:17:10', '2025-08-20 11:39:41', 0);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (19, 201, '财务分析', '2024-01-15 10:00:00', '2024-01-15 12:00:00', '月度财务数据分析', 'pending', '2025-08-20 11:17:10', '2025-08-20 16:48:05', 0);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (20, 201, '写作练习', '2024-01-15 21:30:00', '2024-01-15 22:30:00', '每日写作练习,提升文笔', 'pending', '2025-08-20 11:17:10', '2025-08-20 11:39:41', 0);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (21, 201, '晨间锻炼', '2025-08-20 03:40:49', '2025-08-20 03:40:49', '每日晨跑,保持身体健康', 'pending', '2025-08-20 11:46:21', '2025-08-20 11:46:21', 0);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (22, 201, 'Spring Cloud服务注册与发现实践', '2025-08-20 08:00:00', '2025-08-20 09:00:00', '学习Eureka服务注册中心搭建及服务实例注册流程,使用Spring Boot项目实践服务发现功能', '0', '2025-08-20 15:03:07', '2025-08-20 16:48:00', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (23, 201, '分布式事务与最终一致性设计', '2025-08-20 12:30:00', '2025-08-20 13:30:00', '研究微服务场景下的分布式事务解决方案,重点分析TCC补偿事务与Saga模式在订单系统的应用案例', '0', '2025-08-20 15:03:07', '2025-08-20 16:48:00', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (24, 201, 'API网关与服务路由配置', '2025-08-20 16:30:00', '2025-08-20 17:30:00', '使用Spring Cloud Gateway搭建API网关,实现请求路由、负载均衡和服务熔断功能配置', '0', '2025-08-20 15:03:07', '2025-08-20 16:48:00', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (25, 201, 'Redis缓存穿透与雪崩防护策略', '2025-08-20 19:00:00', '2025-08-20 20:00:00', '基于现有Redis技能,设计缓存击穿解决方案,实现布隆过滤器与热点数据自动加载机制', '0', '2025-08-20 15:03:07', '2025-08-20 16:48:00', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (26, 201, '微服务监控与链路追踪', '2025-08-20 20:00:00', '2025-08-20 21:00:00', '搭建Prometheus+Grafana监控系统,集成Spring Boot应用指标采集,配置服务依赖拓扑图展示', '0', '2025-08-20 15:03:07', '2025-08-20 16:48:00', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (27, 201, '学习Spring Cloud Config Server', '2025-08-20 07:00:00', '2025-08-20 08:00:00', '配置中心实践,实现微服务动态配置管理', '0', '2025-08-20 15:16:01', '2025-08-20 16:47:14', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (28, 201, '服务熔断与降级实践', '2025-08-20 09:30:00', '2025-08-20 10:30:00', '使用Spring Cloud Hystrix实现服务容错处理', '0', '2025-08-20 15:16:01', '2025-08-20 16:48:00', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (29, 201, 'Docker容器化部署', '2025-08-20 14:00:00', '2025-08-20 15:30:00', '制作Spring Boot应用的Docker镜像并部署微服务', '0', '2025-08-20 15:16:01', '2025-08-20 15:38:34', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (30, 201, '高并发系统设计案例', '2025-08-20 17:30:00', '2025-08-20 18:30:00', '基于电商场景设计具备水平扩展能力的微服务架构', '0', '2025-08-20 15:16:01', '2025-08-20 15:38:34', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (31, 201, '系统设计模式学习', '2025-08-20 10:30:00', '2025-08-20 11:30:00', '学习CQRS/EDA等系统设计模式,结合Redis实现缓存层高可用策略', '0', '2025-08-20 15:19:05', '2025-08-20 15:38:34', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (32, 201, '分布式锁实现与优化', '2025-08-20 15:30:00', '2025-08-20 16:30:00', '研究Redis分布式锁的Redlock算法实现与性能优化方案', '0', '2025-08-20 15:19:05', '2025-08-20 15:38:34', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (33, 201, '服务网格基础实践', '2025-08-20 12:00:00', '2025-08-20 12:30:00', '搭建Istio服务网格基础环境,学习微服务通信安全策略配置', '0', '2025-08-20 15:19:05', '2025-08-20 16:48:00', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (34, 201, '异步消息传递架构设计', '2025-08-20 18:30:00', '2025-08-20 19:00:00', '基于Kafka/RabbitMQ设计微服务异步通信架构方案', '0', '2025-08-20 15:19:05', '2025-08-20 15:38:34', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (35, 201, '服务间通信优化', '2025-08-20 10:30:00', '2025-08-20 11:30:00', '学习并实践REST与gRPC协议在微服务中的性能对比与选型策略', '0', '2025-08-20 15:43:04', '2025-08-20 16:47:41', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (36, 201, '微服务安全认证体系构建', '2025-08-20 13:30:00', '2025-08-20 14:30:00', '基于OAuth2+JWT实现服务间安全通信与统一鉴权机制', '0', '2025-08-20 15:43:04', '2025-08-20 16:47:41', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (37, 201, 'Docker容器化部署实战', '2025-08-20 14:30:00', '2025-08-20 15:30:00', '使用Docker Compose搭建微服务集群环境并配置服务发现', '0', '2025-08-20 15:43:04', '2025-08-20 16:47:41', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (38, 201, '分布式消息中间件集成', '2025-08-20 15:30:00', '2025-08-20 16:30:00', '基于Kafka实现微服务异步通信与事件驱动架构设计', '0', '2025-08-20 15:43:04', '2025-08-20 16:47:41', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (39, 201, 'CQRS架构模式实践', '2025-08-20 17:30:00', '2025-08-20 18:30:00', '通过Redis+MySQL实现读写分离的微服务系统架构设计', '0', '2025-08-20 15:43:04', '2025-08-20 16:47:41', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (40, 201, '系统设计中的微服务拆分策略', '2025-08-20 10:30:00', '2025-08-20 11:30:00', '学习领域驱动设计(DDD)在微服务拆分中的应用,通过实际案例分析服务边界划分原则', '0', '2025-08-20 15:44:23', '2025-08-20 16:47:41', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (41, 201, '服务网格Istio流量管理实践', '2025-08-20 13:30:00', '2025-08-20 14:30:00', '配置Istio虚拟服务与目标规则,实现金丝雀发布和流量镜像功能', '0', '2025-08-20 15:44:23', '2025-08-20 16:47:41', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (42, 201, '高并发缓存策略设计', '2025-08-20 15:00:00', '2025-08-20 16:00:00', '结合Redis设计多级缓存架构,实现热点数据自动降级和缓存预热机制', '0', '2025-08-20 15:44:23', '2025-08-20 16:47:41', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (43, 201, '分布式系统CAP权衡分析', '2025-08-20 17:30:00', '2025-08-20 18:30:00', '通过电商秒杀场景案例,分析不同业务场景下的CAP取舍策略', '0', '2025-08-20 15:44:23', '2025-08-20 16:47:41', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (44, 201, '学习微服务架构核心概念', '2025-08-20 12:30:00', '2025-08-20 13:30:00', '阅读《Spring微服务实战》前3章,理解微服务通信、边界划分等核心概念', '0', '2025-08-20 15:46:44', '2025-08-20 16:47:41', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (45, 201, '系统设计能力训练 - 高可用架构', '2025-08-20 16:30:00', '2025-08-20 17:30:00', '设计一个基于Spring Cloud的高可用订单管理系统架构图并记录设计思路', '0', '2025-08-20 15:46:44', '2025-08-20 16:47:41', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (46, 201, '微服务日志聚合与分析设计', '2025-08-20 11:30:00', '2025-08-20 12:00:00', '学习如何在微服务架构中统一日志管理,使用ELK(Elasticsearch、Logstash、Kibana)技术栈进行日志收集与分析,提升系统可观测性。', '0', '2025-08-20 15:48:09', '2025-08-20 16:47:41', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (47, 201, 'Spring Boot Admin 实践', '2025-08-20 14:30:00', '2025-08-20 15:00:00', '通过 Spring Boot Admin 搭建微服务监控控制台,实现服务健康状态、指标查看和告警通知,提升系统运维能力。', '0', '2025-08-20 15:48:09', '2025-08-20 16:47:41', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (48, 201, '设计一个订单系统的微服务拆分方案', '2025-08-20 18:30:00', '2025-08-20 19:00:00', '结合实际案例,设计一个电商系统中订单模块的微服务拆分策略,包括服务边界划分、数据一致性保障、服务间通信设计等。', '0', '2025-08-20 15:48:09', '2025-08-20 16:47:41', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (49, 201, '学习Spring Cloud Gateway高级路由配置', '2025-08-20 12:00:00', '2025-08-20 12:30:00', '深入学习Spring Cloud Gateway的断言、过滤器、动态路由等高级配置,提升API网关的实战能力。', '0', '2025-08-20 15:48:09', '2025-08-20 16:47:41', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (50, 201, '微服务配置中心与动态刷新实践', '2025-08-20 15:30:00', '2025-08-20 16:00:00', '基于Spring Cloud Config和Nacos实现微服务的统一配置管理,并集成Spring Cloud Bus实现配置的动态刷新。', '0', '2025-08-20 15:48:09', '2025-08-20 16:47:41', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (51, 204, '打王者荣耀', '2025-08-20 07:51:13', '2025-08-20 09:49:13', '', 'completed', '2025-08-20 15:49:52', '2025-08-20 16:03:05', 0);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (52, 201, '学习Spring Cloud Sleuth与Zipkin集成', '2025-08-20 12:00:00', '2025-08-20 12:30:00', '掌握微服务链路追踪技术,提升分布式系统调试与监控能力,增强微服务可观测性。', '0', '2025-08-20 15:54:40', '2025-08-20 15:54:40', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (53, 201, '构建基于Spring Security的OAuth2认证中心', '2025-08-20 14:30:00', '2025-08-20 15:00:00', '实现微服务间的安全认证与授权机制,提升微服务安全体系设计能力。', '0', '2025-08-20 15:54:40', '2025-08-20 15:54:40', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (54, 201, '设计高并发场景下的分布式锁方案(基于Redis)', '2025-08-20 15:30:00', '2025-08-20 16:00:00', '结合Redis实现分布式锁,提升在高并发系统中对共享资源控制的能力。', '0', '2025-08-20 15:54:40', '2025-08-20 15:54:40', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (55, 201, '分析一个实际电商系统的微服务拆分案例', '2025-08-20 17:30:00', '2025-08-20 18:00:00', '通过案例学习,强化微服务拆分策略在实际项目中的应用,提升系统设计能力。', '0', '2025-08-20 15:54:40', '2025-08-20 15:54:40', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (56, 201, '实践服务网格中Istio的故障注入与弹性测试', '2025-08-20 19:30:00', '2025-08-20 20:00:00', '通过服务网格工具Istio模拟服务异常,提升系统的弹性和容错能力。', '0', '2025-08-20 15:54:40', '2025-08-20 15:54:40', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (57, 204, '玩原神', '2025-08-20 01:00:00', '2025-08-20 02:00:00', '', 'completed', '2025-08-20 15:55:32', '2025-08-20 16:44:36', 0);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (58, 204, '打瓦', '2025-08-20 10:00:00', '2025-08-20 12:00:00', '', 'completed', '2025-08-20 15:57:44', '2025-08-20 16:03:06', 0);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (59, 201, '学习微服务核心概念', '2025-08-20 07:30:00', '2025-08-20 08:30:00', '阅读并理解微服务基本架构、服务拆分原则、通信机制等相关知识', '0', '2025-08-20 17:00:38', '2025-08-20 17:00:38', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (60, 201, '系统设计原则学习', '2025-08-20 12:30:00', '2025-08-20 13:30:00', '学习高并发、可扩展系统的设计原则,包括CAP理论、负载均衡、缓存策略等内容', '0', '2025-08-20 17:00:38', '2025-08-20 17:00:38', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (61, 201, 'Spring Cloud微服务实践', '2025-08-20 17:30:00', '2025-08-20 18:30:00', '动手实践Spring Cloud搭建微服务项目,完成服务注册与发现模块的配置', '0', '2025-08-20 17:00:38', '2025-08-20 17:00:38', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (62, 201, 'Redis在微服务中的应用', '2025-08-20 19:00:00', '2025-08-20 20:00:00', '学习Redis在微服务架构中的典型使用场景,如分布式缓存、共享Session、分布式锁等', '0', '2025-08-20 17:00:38', '2025-08-20 17:00:38', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (63, 201, '阅读微服务相关技术文档', '2025-08-20 20:00:00', '2025-08-20 21:00:00', '阅读Spring Cloud Alibaba或Spring Cloud Netflix的官方文档,掌握实际配置与使用技巧', '0', '2025-08-20 17:00:38', '2025-08-20 17:00:38', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (64, 204, '阅读技术文档', '2025-08-20 02:00:00', '2025-08-20 03:00:00', '阅读与当前项目相关的技术文档或API文档,提升对开发工具和框架的理解。', '0', '2025-08-20 17:03:02', '2025-08-20 17:03:02', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (65, 204, '算法练习', '2025-08-20 03:15:00', '2025-08-20 04:15:00', '在LeetCode或CodeWars上完成1-2道算法题目,提升编程能力。', '0', '2025-08-20 17:03:02', '2025-08-20 17:03:02', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (66, 204, '学习设计模式', '2025-08-20 04:30:00', '2025-08-20 05:30:00', '学习一种常用的设计模式,并结合实例进行理解与总结。', '0', '2025-08-20 17:03:02', '2025-08-20 17:03:02', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (67, 204, '代码重构练习', '2025-08-20 06:00:00', '2025-08-20 07:00:00', '从过往项目中选取一段代码进行重构,提升代码质量与可维护性。', '0', '2025-08-20 17:03:02', '2025-08-20 17:03:02', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (68, 204, '观看技术分享视频', '2025-08-20 12:30:00', '2025-08-20 13:30:00', '观看一场技术分享或Talk,了解行业最新趋势或技术应用。', '0', '2025-08-20 17:03:02', '2025-08-20 17:03:02', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (69, 204, '阅读技术文档', '2025-08-20 02:10:00', '2025-08-20 03:10:00', '阅读与当前项目相关的技术文档或API文档,提升对开发组件的理解。', '0', '2025-08-20 17:04:14', '2025-08-20 17:04:14', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (70, 204, '学习新编程语言特性', '2025-08-20 02:30:00', '2025-08-20 03:30:00', '学习与工作相关的编程语言新特性,例如JavaScript ES6+或Python 3.11新功能。', '0', '2025-08-20 17:04:14', '2025-08-20 17:04:14', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (71, 204, '代码练习', '2025-08-20 03:40:00', '2025-08-20 04:40:00', '在LeetCode或CodeWars上完成1-2道算法题目,提高编程能力。', '0', '2025-08-20 17:04:14', '2025-08-20 17:04:14', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (72, 204, '学习框架知识', '2025-08-20 05:00:00', '2025-08-20 06:00:00', '学习与当前项目相关的框架知识,例如React.js或Spring Boot。', '0', '2025-08-20 17:04:14', '2025-08-20 17:04:14', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (73, 204, '复盘日志', '2025-08-20 06:10:00', '2025-08-20 07:00:00', '总结今日的学习和工作内容,规划明日的改进方向。', '0', '2025-08-20 17:04:14', '2025-08-20 17:04:14', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (74, 204, '阅读技术文档', '2025-08-20 02:10:00', '2025-08-20 03:10:00', '阅读与当前开发相关的技术文档,提升对框架或工具的理解', '0', '2025-08-20 17:04:29', '2025-08-20 17:04:29', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (75, 204, '学习设计模式', '2025-08-20 03:20:00', '2025-08-20 04:20:00', '学习常见的软件设计模式,提升代码架构能力', '0', '2025-08-20 17:04:29', '2025-08-20 17:04:29', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (76, 204, '刷LeetCode算法题', '2025-08-20 04:30:00', '2025-08-20 05:30:00', '完成一道中等难度的LeetCode算法题,锻炼编程思维', '0', '2025-08-20 17:04:29', '2025-08-20 17:04:29', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (77, 204, '代码重构练习', '2025-08-20 06:00:00', '2025-08-20 07:00:00', '使用重构技巧优化一段已有代码,提高代码可读性和可维护性', '0', '2025-08-20 17:04:29', '2025-08-20 17:04:29', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (78, 204, '观看技术分享视频', '2025-08-20 12:30:00', '2025-08-20 13:00:00', '观看一个30分钟的技术分享视频,了解行业最新动态或新技术应用', '0', '2025-08-20 17:04:29', '2025-08-20 17:04:29', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (79, 204, '学习最新前端框架文档', '2025-08-20 02:10:00', '2025-08-20 03:10:00', '阅读并实践React或Vue最新版本的官方文档,提升前端开发能力。', '0', '2025-08-20 17:24:15', '2025-08-20 17:24:15', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (80, 204, '代码重构练习', '2025-08-20 03:20:00', '2025-08-20 04:20:00', '从GitHub选取一个小型项目进行代码重构练习,提升代码质量和架构能力。', '0', '2025-08-20 17:24:15', '2025-08-20 17:24:15', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (81, 204, '解决LeetCode算法题', '2025-08-20 04:30:00', '2025-08-20 05:30:00', '完成1-2道中等难度的LeetCode算法题,巩固算法基础。', '0', '2025-08-20 17:24:15', '2025-08-20 17:24:15', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (82, 204, '技术博客写作', '2025-08-20 06:00:00', '2025-08-20 07:00:00', '撰写一篇关于近期学习技术的博客文章,分享开发经验。', '0', '2025-08-20 17:24:15', '2025-08-20 17:24:15', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (83, 204, '观看技术分享视频', '2025-08-20 12:30:00', '2025-08-20 13:30:00', '观看一场技术分享会的录像,如Google I/O或阿里TechDay,了解行业最新动态。', '0', '2025-08-20 17:24:15', '2025-08-20 17:24:15', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (84, 201, '学习微服务核心概念', '2025-08-20 07:30:00', '2025-08-20 08:30:00', '阅读微服务架构的核心概念与设计原则,如服务拆分、注册与发现、负载均衡等,提升对分布式系统的理解。', '0', '2025-08-20 17:25:53', '2025-08-20 17:25:53', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (85, 201, '实践Spring Cloud微服务搭建', '2025-08-20 12:30:00', '2025-08-20 13:30:00', '使用Spring Boot与Spring Cloud搭建一个简单的微服务项目,实践服务注册中心、服务提供者与消费者的基础结构。', '0', '2025-08-20 17:25:53', '2025-08-20 17:25:53', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (86, 201, '学习系统设计方法论', '2025-08-20 16:30:00', '2025-08-20 17:30:00', '学习系统设计的基本步骤与方法,包括需求分析、模块划分、接口设计、数据模型设计等,提升整体架构能力。', '0', '2025-08-20 17:25:53', '2025-08-20 17:25:53', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (87, 201, '阅读微服务通信机制', '2025-08-20 18:00:00', '2025-08-20 19:00:00', '学习微服务之间通信的常见方式,如REST、RPC、消息队列等,理解其适用场景和优缺点。', '0', '2025-08-20 17:25:53', '2025-08-20 17:25:53', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (88, 201, '分析开源微服务项目', '2025-08-20 19:00:00', '2025-08-20 20:00:00', '查找并分析一个开源的微服务项目(如mall、pig),学习其架构设计和代码结构,提升实战理解能力。', '0', '2025-08-20 17:25:53', '2025-08-20 17:25:53', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (89, 204, '学习最新前端框架文档', '2025-08-20 02:10:00', '2025-08-20 03:10:00', '阅读并实践React 18或Vue 3的最新官方文档,提升前端开发能力。', '0', '2025-08-20 17:27:23', '2025-08-20 17:27:23', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (90, 204, '代码重构练习', '2025-08-20 03:20:00', '2025-08-20 04:20:00', '从GitHub上找一个小型开源项目,尝试优化其代码结构并提交PR。', '0', '2025-08-20 17:27:23', '2025-08-20 17:27:23', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (91, 204, '技术博客撰写', '2025-08-20 04:30:00', '2025-08-20 05:30:00', '总结最近使用TypeScript进行开发的经验,撰写一篇技术文章并发布到个人博客。', '0', '2025-08-20 17:27:23', '2025-08-20 17:27:23', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (92, 204, 'LeetCode算法练习', '2025-08-20 06:00:00', '2025-08-20 07:00:00', '完成两道中等难度的LeetCode题目,巩固算法基础。', '0', '2025-08-20 17:27:23', '2025-08-20 17:27:23', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (93, 204, '学习云原生相关知识', '2025-08-20 12:30:00', '2025-08-20 13:30:00', '观看Kubernetes基础课程视频,了解微服务部署流程。', '0', '2025-08-20 17:27:23', '2025-08-20 17:27:23', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (94, 204, '阅读技术文档', '2025-08-20 02:10:00', '2025-08-20 03:10:00', '阅读与当前开发相关的技术文档,如Spring Boot或Redis官方文档,提升系统设计与开发能力。', '0', '2025-08-20 17:28:20', '2025-08-20 17:28:20', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (95, 204, '学习设计模式', '2025-08-20 03:20:00', '2025-08-20 04:20:00', '学习常见的设计模式,如工厂模式、策略模式、观察者模式等,并结合代码实践。', '0', '2025-08-20 17:28:20', '2025-08-20 17:28:20', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (96, 204, 'LeetCode 刷题', '2025-08-20 04:30:00', '2025-08-20 05:30:00', '完成一道中等难度的LeetCode算法题,巩固数据结构与算法基础。', '0', '2025-08-20 17:28:20', '2025-08-20 17:28:20', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (97, 204, '代码重构练习', '2025-08-20 06:00:00', '2025-08-20 07:00:00', '选取一个小型项目或代码模块进行重构,优化代码结构和可维护性。', '0', '2025-08-20 17:28:20', '2025-08-20 17:28:20', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (98, 204, '学习微服务架构', '2025-08-20 12:30:00', '2025-08-20 13:30:00', '学习微服务相关知识,如服务注册与发现、负载均衡、API网关等概念,并进行简单实践。', '0', '2025-08-20 17:28:20', '2025-08-20 17:28:20', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (99, 204, '阅读技术文档或论文', '2025-08-20 02:10:00', '2025-08-20 03:10:00', '利用碎片时间阅读与软件工程相关的技术文档、开源项目源码或前沿技术论文,提升技术深度。', '0', '2025-08-20 17:31:07', '2025-08-20 17:31:07', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (100, 204, '编写技术博客或笔记', '2025-08-20 03:20:00', '2025-08-20 04:20:00', '总结近期项目经验或学习内容,撰写技术博客或整理学习笔记,巩固知识并积累个人技术资产。', '0', '2025-08-20 17:31:07', '2025-08-20 17:31:07', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (101, 204, '在线学习新技术', '2025-08-20 04:30:00', '2025-08-20 05:30:00', '观看与软件开发相关的在线课程或技术分享视频,例如微服务架构、CI/CD流程或前端框架更新。', '0', '2025-08-20 17:31:07', '2025-08-20 17:31:07', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (102, 204, '代码练习与算法训练', '2025-08-20 06:00:00', '2025-08-20 07:00:00', '在LeetCode、CodeWars等平台上完成几道算法题目,保持编程手感和逻辑思维能力。', '0', '2025-08-20 17:31:07', '2025-08-20 17:31:07', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (103, 204, '参与开源项目贡献', '2025-08-20 19:00:00', '2025-08-20 20:00:00', '浏览GitHub上的开源项目,提交Issue、修复Bug或提交文档优化,提升协作与代码实战能力。', '0', '2025-08-20 17:31:07', '2025-08-20 17:31:07', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (104, 204, '阅读技术文档', '2025-08-20 02:10:00', '2025-08-20 03:10:00', '阅读与当前项目相关的技术文档或API文档,提升对开发工具和框架的理解。', '0', '2025-08-20 17:33:55', '2025-08-20 17:33:55', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (105, 204, '学习新编程语言特性', '2025-08-20 03:20:00', '2025-08-20 04:20:00', '学习如Python、Rust或TypeScript的最新语言特性,提升代码质量和开发效率。', '0', '2025-08-20 17:33:55', '2025-08-20 17:33:55', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (106, 204, '代码重构练习', '2025-08-20 04:30:00', '2025-08-20 05:30:00', '挑选一段自己或开源项目中的代码进行重构,提升代码可维护性和可读性。', '0', '2025-08-20 17:33:55', '2025-08-20 17:33:55', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (107, 204, '编写单元测试', '2025-08-20 05:40:00', '2025-08-20 06:40:00', '为之前开发的功能模块编写或完善单元测试,提升代码质量与稳定性。', '0', '2025-08-20 17:33:55', '2025-08-20 17:33:55', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (108, 204, '参与开源项目', '2025-08-20 06:50:00', '2025-08-20 07:50:00', '在GitHub上寻找合适的开源项目,提交PR或修复已知的Issue,积累项目经验。', '0', '2025-08-20 17:33:55', '2025-08-20 17:33:55', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (109, 204, '阅读技术文档', '2025-08-20 02:00:00', '2025-08-20 03:00:00', '阅读与当前项目相关的技术文档或研究新的开发框架,提升技术理解能力。', '0', '2025-08-20 17:34:24', '2025-08-20 17:34:24', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (110, 204, '代码练习', '2025-08-20 09:49:00', '2025-08-20 10:00:00', '在LeetCode或CodeWars上完成2-3道算法题,强化编程能力。', '0', '2025-08-20 17:34:24', '2025-08-20 17:34:24', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (111, 204, '学习新工具', '2025-08-20 12:00:00', '2025-08-20 13:00:00', '学习并实践一个新开发工具或库,例如Docker、Kubernetes或React Native。', '0', '2025-08-20 17:34:24', '2025-08-20 17:34:24', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (112, 204, '技术博客写作', '2025-08-20 18:00:00', '2025-08-20 19:00:00', '总结并撰写一篇技术博客,分享近期项目经验或学习心得。', '0', '2025-08-20 17:34:24', '2025-08-20 17:34:24', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (113, 204, '在线课程学习', '2025-08-20 19:00:00', '2025-08-20 20:00:00', '观看一节与职业发展相关的在线课程,例如系统设计、微服务架构或AI基础。', '0', '2025-08-20 17:34:24', '2025-08-20 17:34:24', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (114, 204, '阅读技术文档', '2025-08-20 02:10:00', '2025-08-20 03:10:00', '阅读与当前项目相关的技术文档或API文档,提升对开发工具和框架的理解。', '0', '2025-08-20 17:36:47', '2025-08-20 17:36:47', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (115, 204, '学习新编程语言', '2025-08-20 03:20:00', '2025-08-20 04:20:00', '利用碎片时间学习一门新编程语言的基础语法,例如Rust或Go语言。', '0', '2025-08-20 17:36:47', '2025-08-20 17:36:47', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (116, 204, '代码重构练习', '2025-08-20 04:30:00', '2025-08-20 05:30:00', '从开源项目中挑选一段代码进行重构练习,提高代码质量和设计能力。', '0', '2025-08-20 17:36:47', '2025-08-20 17:36:47', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (117, 204, '行业资讯阅读', '2025-08-20 09:50:00', '2025-08-20 10:00:00', '阅读软件工程领域的最新资讯或博客文章,了解行业趋势和技术动态。', '0', '2025-08-20 17:36:47', '2025-08-20 17:36:47', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (118, 204, 'LeetCode算法练习', '2025-08-20 19:00:00', '2025-08-20 19:50:00', '完成一道LeetCode算法题,提升编程能力和算法思维。', '0', '2025-08-20 17:36:47', '2025-08-20 17:36:47', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (119, 204, '阅读技术文档', '2025-08-20 02:10:00', '2025-08-20 03:10:00', '阅读与当前项目相关的技术文档或API文档,提升对开发工具和框架的理解。', '0', '2025-08-20 17:38:49', '2025-08-20 17:38:49', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (120, 204, '学习设计模式', '2025-08-20 09:50:00', '2025-08-20 10:50:00', '学习常见的软件设计模式,提升代码架构能力和开发效率。', '0', '2025-08-20 17:38:49', '2025-08-20 17:38:49', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (121, 204, '编写技术博客', '2025-08-20 12:10:00', '2025-08-20 13:10:00', '总结最近的工作经验或学习内容,撰写一篇技术博客文章。', '0', '2025-08-20 17:38:49', '2025-08-20 17:38:49', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (122, 204, 'LeetCode刷题', '2025-08-20 13:30:00', '2025-08-20 14:30:00', '完成一道LeetCode算法题,提升编程能力和面试准备。', '0', '2025-08-20 17:38:49', '2025-08-20 17:38:49', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (123, 204, '学习新技术', '2025-08-20 19:00:00', '2025-08-20 20:00:00', '学习一项与职业发展相关的前沿技术,如云原生开发或AI基础。', '0', '2025-08-20 17:38:49', '2025-08-20 17:38:49', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (124, 204, '阅读技术文档', '2025-08-20 02:10:00', '2025-08-20 03:10:00', '阅读与当前项目相关的技术文档或API文档,提升对开发工具和框架的理解。', '0', '2025-08-20 17:41:52', '2025-08-20 17:41:52', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (125, 204, '学习新编程技巧', '2025-08-20 02:10:00', '2025-08-20 03:10:00', '观看一段关于编程技巧或最佳实践的视频教程,提升代码质量。', '0', '2025-08-20 17:41:52', '2025-08-20 17:41:52', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (126, 204, '代码重构练习', '2025-08-20 03:20:00', '2025-08-20 04:20:00', '选择一个小型模块进行代码重构,优化代码结构并提升可维护性。', '0', '2025-08-20 17:41:52', '2025-08-20 17:41:52', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (127, 204, '阅读行业资讯', '2025-08-20 04:30:00', '2025-08-20 05:30:00', '阅读软件开发领域的最新资讯或技术趋势,保持对行业动态的敏感度。', '0', '2025-08-20 17:41:52', '2025-08-20 17:41:52', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (128, 204, '模拟算法题训练', '2025-08-20 05:40:00', '2025-08-20 06:40:00', '完成2-3道常见的算法题目,保持对算法逻辑的熟练度。', '0', '2025-08-20 17:41:52', '2025-08-20 17:41:52', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (129, 204, '阅读技术文档', '2025-08-20 02:00:00', '2025-08-20 03:00:00', '阅读与当前项目相关的技术文档或API文档,提升对开发工具和接口的理解。', '0', '2025-08-20 17:42:14', '2025-08-20 17:42:14', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (130, 204, '代码练习', '2025-08-20 03:15:00', '2025-08-20 04:15:00', '选择一个算法或编程题目进行练习,使用LeetCode或Codewars平台巩固编程能力。', '0', '2025-08-20 17:42:14', '2025-08-20 17:42:14', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (131, 204, '学习新框架', '2025-08-20 04:30:00', '2025-08-20 05:30:00', '学习一个与职业相关的开发框架(如Spring Boot或React),观看入门教程视频。', '0', '2025-08-20 17:42:14', '2025-08-20 17:42:14', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (132, 204, '撰写技术总结', '2025-08-20 06:00:00', '2025-08-20 07:00:00', '总结近期项目经验或学习内容,整理成技术笔记或博客文章。', '0', '2025-08-20 17:42:14', '2025-08-20 17:42:14', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (133, 204, '行业资讯阅读', '2025-08-20 12:15:00', '2025-08-20 13:15:00', '浏览软件工程领域的最新资讯或技术趋势,关注GitHub热门项目或社区动态。', '0', '2025-08-20 17:42:14', '2025-08-20 17:42:14', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (134, 204, '阅读技术文档', '2025-08-20 02:10:00', '2025-08-20 03:10:00', '阅读与当前项目相关的技术文档或API文档,提升对项目架构的理解。', '0', '2025-08-20 17:44:20', '2025-08-20 17:44:20', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (135, 204, '学习新编程语言特性', '2025-08-20 03:20:00', '2025-08-20 04:20:00', '学习并实践一门常用编程语言的新特性,例如 TypeScript 或 Rust。', '0', '2025-08-20 17:44:20', '2025-08-20 17:44:20', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (136, 204, '编写技术博客', '2025-08-20 04:30:00', '2025-08-20 05:30:00', '总结日常开发经验,撰写一篇与工作相关的技术博客,提升表达能力并巩固知识。', '0', '2025-08-20 17:44:20', '2025-08-20 17:44:20', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (137, 204, '参与开源项目', '2025-08-20 05:40:00', '2025-08-20 06:40:00', '在GitHub上查找并参与一个合适的开源项目,提交Issue或代码优化。', '0', '2025-08-20 17:44:20', '2025-08-20 17:44:20', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (138, 204, '算法练习', '2025-08-20 12:30:00', '2025-08-20 13:30:00', '在LeetCode或牛客网上完成3道算法题,提升代码逻辑与解题能力。', '0', '2025-08-20 17:44:20', '2025-08-20 17:44:20', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (139, 204, '阅读技术文档', '2025-08-20 02:00:00', '2025-08-20 03:00:00', '阅读与当前项目相关的技术文档或API文档,提升对开发工具和框架的理解。', '0', '2025-08-20 17:46:13', '2025-08-20 17:46:13', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (140, 204, '编写代码片段', '2025-08-20 09:50:00', '2025-08-20 10:50:00', '利用碎片时间编写一个小型代码片段,实践某个具体功能,提升编程技巧。', '0', '2025-08-20 17:46:13', '2025-08-20 17:46:13', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (141, 204, '学习设计模式', '2025-08-20 12:10:00', '2025-08-20 13:10:00', '学习一种常见的软件设计模式,并尝试用代码实现示例。', '0', '2025-08-20 17:46:13', '2025-08-20 17:46:13', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (142, 204, '观看技术分享视频', '2025-08-20 19:00:00', '2025-08-20 20:00:00', '观看一段技术分享视频,了解最新的开发工具或技术趋势。', '0', '2025-08-20 17:46:13', '2025-08-20 17:46:13', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (143, 204, '学习最新前端框架文档', '2025-08-20 02:10:00', '2025-08-20 03:10:00', '阅读并学习React 18或Vue 3的官方文档,提升前端开发能力。', '0', '2025-08-20 17:48:31', '2025-08-20 17:48:31', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (144, 204, '代码重构练习', '2025-08-20 03:20:00', '2025-08-20 04:20:00', '从GitHub上找一个小型开源项目,进行代码重构练习,提升代码质量与架构能力。', '0', '2025-08-20 17:48:31', '2025-08-20 17:48:31', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (145, 204, '观看技术分享视频', '2025-08-20 04:30:00', '2025-08-20 05:30:00', '观看一场高质量的技术分享,例如Google I/O、VueConf等会议视频,扩展技术视野。', '0', '2025-08-20 17:48:31', '2025-08-20 17:48:31', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (146, 204, '刷一道LeetCode中等难度题', '2025-08-20 05:40:00', '2025-08-20 06:40:00', '选择一道中等难度的算法题,进行编程训练,保持逻辑思维与算法能力。', '0', '2025-08-20 17:48:31', '2025-08-20 17:48:31', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (147, 204, '整理开发笔记或写技术博客', '2025-08-20 19:00:00', '2025-08-20 20:00:00', '将近期的学习成果或项目经验整理成技术博客,提升表达能力并积累个人知识库。', '0', '2025-08-20 17:48:31', '2025-08-20 17:48:31', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (148, 201, '学习微服务核心概念', '2025-08-20 07:30:00', '2025-08-20 08:30:00', '阅读《Spring Cloud微服务实战》第一章,了解微服务架构的基本概念和设计原则', '0', '2025-08-20 17:48:36', '2025-08-20 17:48:36', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (149, 201, '系统设计案例分析', '2025-08-20 12:00:00', '2025-08-20 13:00:00', '研究一个高并发系统的架构设计案例,重点关注数据分片与分布式事务的实现方式', '0', '2025-08-20 17:48:36', '2025-08-20 17:48:36', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (150, 201, '微服务项目实操', '2025-08-20 17:30:00', '2025-08-20 18:30:00', '搭建基于Spring Cloud Alibaba的微服务基础环境,完成服务注册与发现功能配置', '0', '2025-08-20 17:48:36', '2025-08-20 17:48:36', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (151, 201, '系统设计模式学习', '2025-08-20 19:00:00', '2025-08-20 20:00:00', '学习CQRS和事件溯源设计模式,结合实际项目思考应用方式', '0', '2025-08-20 17:48:36', '2025-08-20 17:48:36', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (152, 204, '阅读技术文档并做笔记', '2025-08-20 02:10:00', '2025-08-20 03:10:00', '阅读与当前主流开发技术相关的文档(如Spring Boot官方文档、React官方指南等),并整理关键知识点用于后续复习和项目应用。', '0', '2025-08-20 17:51:08', '2025-08-20 17:51:08', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (153, 204, '学习单元测试编写', '2025-08-20 03:20:00', '2025-08-20 04:20:00', '学习并实践如何为现有代码编写单元测试,使用JUnit或Mockito提升代码质量与可维护性。', '0', '2025-08-20 17:51:08', '2025-08-20 17:51:08', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (154, 204, '代码重构练习', '2025-08-20 04:30:00', '2025-08-20 05:30:00', '从个人项目或开源项目中挑选一段代码进行重构,关注代码可读性与设计模式的应用。', '0', '2025-08-20 17:51:08', '2025-08-20 17:51:08', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (155, 204, '学习DevOps基础概念', '2025-08-20 06:00:00', '2025-08-20 07:00:00', '学习并总结DevOps相关基础概念,如CI/CD流程、Docker容器化部署以及基础的Kubernetes使用方法。', '0', '2025-08-20 17:51:08', '2025-08-20 17:51:08', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (156, 204, '参与技术社区交流', '2025-08-20 12:30:00', '2025-08-20 13:30:00', '在CSDN、掘金或Stack Overflow等技术社区中回答问题,或参与讨论,提升个人技术表达与交流能力。', '0', '2025-08-20 17:51:08', '2025-08-20 17:51:08', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (157, 204, '阅读技术文档', '2025-08-20 02:00:00', '2025-08-20 03:00:00', '阅读与当前项目相关的技术文档或API文档,提升对开发工具和框架的理解。', '0', '2025-08-20 17:52:02', '2025-08-20 17:52:02', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (158, 204, '代码重构练习', '2025-08-20 09:50:00', '2025-08-20 10:50:00', '从现有项目中挑选一小段代码进行重构,提升代码质量与可维护性。', '0', '2025-08-20 17:52:02', '2025-08-20 17:52:02', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (159, 204, '学习新编程技巧', '2025-08-20 12:30:00', '2025-08-20 13:30:00', '观看一个技术视频或阅读一篇高质量的技术博客,学习新的编程技巧或最佳实践。', '0', '2025-08-20 17:52:02', '2025-08-20 17:52:02', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (160, 204, '编写单元测试', '2025-08-20 17:00:00', '2025-08-20 18:00:00', '为尚未覆盖的模块编写单元测试,提高代码的健壮性和可测试性。', '0', '2025-08-20 17:52:02', '2025-08-20 17:52:02', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (161, 204, '规划明日开发任务', '2025-08-20 19:30:00', '2025-08-20 20:00:00', '梳理明日的工作任务,制定详细的开发计划并做好准备。', '0', '2025-08-20 17:52:02', '2025-08-20 17:52:02', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (162, 204, '阅读技术文档并整理笔记', '2025-08-20 02:00:00', '2025-08-20 03:00:00', '利用碎片时间阅读与当前项目相关的技术文档,整理关键知识点和API使用方法,提升开发效率。', '0', '2025-08-20 17:52:52', '2025-08-20 17:52:52', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (163, 204, '学习新框架或工具', '2025-08-20 09:50:00', '2025-08-20 10:50:00', '选择一个工作中可能用到的新框架或工具(如Spring Boot、React Native等),观看入门教程并完成简单Demo实现。', '0', '2025-08-20 17:52:52', '2025-08-20 17:52:52', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (164, 204, '代码重构与优化', '2025-08-20 12:30:00', '2025-08-20 13:30:00', '从当前负责的项目中挑选一段重复或冗余代码,进行重构和优化,提升代码质量与可维护性。', '0', '2025-08-20 17:52:52', '2025-08-20 17:52:52', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (165, 204, '参与开源项目贡献', '2025-08-20 17:00:00', '2025-08-20 18:00:00', '在GitHub上寻找合适的开源项目,提交一个Bug修复或小功能改进的Pull Request,提升实战能力。', '0', '2025-08-20 17:52:52', '2025-08-20 17:52:52', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (166, 204, '编写技术博客或总结', '2025-08-20 19:00:00', '2025-08-20 20:00:00', '总结近期开发中遇到的问题及解决方案,撰写一篇技术博客文章,分享到个人博客或技术社区。', '0', '2025-08-20 17:52:52', '2025-08-20 17:52:52', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (167, 204, '阅读技术文档', '2025-08-20 02:00:00', '2025-08-20 03:00:00', '阅读与当前项目相关的技术文档或API文档,提升对开发工具和框架的理解。', '0', '2025-08-20 17:54:34', '2025-08-20 17:54:34', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (168, 204, '学习新编程语言', '2025-08-20 09:50:00', '2025-08-20 10:50:00', '利用碎片时间学习一门新编程语言的基础语法,例如Rust或Go语言。', '0', '2025-08-20 17:54:34', '2025-08-20 17:54:34', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (169, 204, '代码练习', '2025-08-20 12:30:00', '2025-08-20 13:30:00', '在LeetCode或CodeWars上完成1-2道算法题,提升编码能力和逻辑思维。', '0', '2025-08-20 17:54:34', '2025-08-20 17:54:34', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (170, 204, '技术博客写作', '2025-08-20 17:30:00', '2025-08-20 18:30:00', '总结最近的项目经验或技术心得,撰写一篇技术博客文章。', '0', '2025-08-20 17:54:34', '2025-08-20 17:54:34', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (171, 204, '学习软件架构设计', '2025-08-20 19:00:00', '2025-08-20 20:00:00', '阅读软件架构设计相关的书籍或资料,提升系统设计能力。', '0', '2025-08-20 17:54:34', '2025-08-20 17:54:34', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (172, 204, '阅读技术文档', '2025-08-20 02:10:00', '2025-08-20 03:10:00', '阅读与当前项目相关的技术文档或API文档,提升对开发工具和框架的理解。', '0', '2025-08-20 17:56:57', '2025-08-20 17:56:57', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (173, 204, '学习设计模式', '2025-08-20 03:20:00', '2025-08-20 04:20:00', '学习常见的软件设计模式,提升代码架构能力和编程思维。', '0', '2025-08-20 17:56:57', '2025-08-20 17:56:57', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (174, 204, '刷算法题', '2025-08-20 04:30:00', '2025-08-20 05:30:00', '在LeetCode或牛客网上完成3-5道算法题目,强化算法基础。', '0', '2025-08-20 17:56:57', '2025-08-20 17:56:57', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (175, 204, '编写技术笔记', '2025-08-20 05:40:00', '2025-08-20 06:40:00', '总结近期项目中的技术难点和解决方案,整理为技术笔记。', '0', '2025-08-20 17:56:57', '2025-08-20 17:56:57', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (176, 204, '观看技术分享视频', '2025-08-20 12:30:00', '2025-08-20 13:30:00', '观看一场技术分享或线上会议录像,了解行业最新动态和技术趋势。', '0', '2025-08-20 17:56:57', '2025-08-20 17:56:57', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (177, 204, '阅读技术文档', '2025-08-20 02:10:00', '2025-08-20 03:10:00', '阅读与当前项目相关的技术文档或API文档,提升对开发工具和框架的理解。', '0', '2025-08-20 17:58:41', '2025-08-20 17:58:41', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (178, 204, '代码重构练习', '2025-08-20 02:10:00', '2025-08-20 03:10:00', '选择一个小型模块进行代码重构练习,提升代码质量和可维护性。', '0', '2025-08-20 17:58:41', '2025-08-20 17:58:41', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (179, 204, '学习新框架', '2025-08-20 03:20:00', '2025-08-20 04:20:00', '学习一个与当前技术栈兼容的新框架,例如Spring Boot或React Native,提升全栈能力。', '0', '2025-08-20 17:58:41', '2025-08-20 17:58:41', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (180, 204, '刷算法题', '2025-08-20 04:30:00', '2025-08-20 05:30:00', '在LeetCode或CodeWars上完成2-3道中等难度的算法题,巩固编程基础。', '0', '2025-08-20 17:58:42', '2025-08-20 17:58:42', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (181, 204, '撰写技术博客', '2025-08-20 06:00:00', '2025-08-20 07:00:00', '总结近期项目经验或学习心得,撰写一篇技术博客,提升表达能力并积累个人品牌。', '0', '2025-08-20 17:58:42', '2025-08-20 17:58:42', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (182, 204, '阅读技术文档', '2025-08-20 02:10:00', '2025-08-20 03:10:00', '阅读与当前项目相关的技术文档或开源框架源码,提升技术深度。', '0', '2025-08-20 18:01:04', '2025-08-20 18:01:04', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (183, 204, '学习新编程技巧', '2025-08-20 09:55:00', '2025-08-20 10:55:00', '观看高质量的技术视频,学习如设计模式、性能优化等进阶编程技巧。', '0', '2025-08-20 18:01:04', '2025-08-20 18:01:04', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (184, 204, '代码重构练习', '2025-08-20 12:30:00', '2025-08-20 13:30:00', '使用 LeetCode 或 Codewars 平台进行算法练习,同时优化已有代码结构。', '0', '2025-08-20 18:01:04', '2025-08-20 18:01:04', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (185, 204, '技术博客写作', '2025-08-20 17:00:00', '2025-08-20 18:00:00', '总结最近的学习或项目经验,撰写一篇技术博客,巩固知识并分享经验。', '0', '2025-08-20 18:01:04', '2025-08-20 18:01:04', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (186, 204, '职业发展规划', '2025-08-20 19:00:00', '2025-08-20 19:45:00', '阅读技术职业发展相关文章,制定短期和长期的职业成长目标。', '0', '2025-08-20 18:01:04', '2025-08-20 18:01:04', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (187, 204, '阅读技术文档', '2025-08-20 02:00:00', '2025-08-20 03:00:00', '阅读与当前开发相关的技术文档,例如Spring Boot官方文档或Redis使用指南,提升技术理解能力。', '0', '2025-08-20 18:03:38', '2025-08-20 18:03:38', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (188, 204, '代码重构练习', '2025-08-20 03:15:00', '2025-08-20 04:15:00', '挑选一段过往项目中的代码,进行重构优化,提升代码质量和可维护性。', '0', '2025-08-20 18:03:38', '2025-08-20 18:03:38', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (189, 204, 'LeetCode算法练习', '2025-08-20 04:30:00', '2025-08-20 05:30:00', '完成一道LeetCode中等难度算法题,并进行代码测试与优化。', '0', '2025-08-20 18:03:38', '2025-08-20 18:14:04', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (190, 204, '学习设计模式', '2025-08-20 06:00:00', '2025-08-20 07:00:00', '学习并实践一种常用的设计模式(如单例模式、工厂模式等),并尝试在实际项目中应用。', '0', '2025-08-20 18:03:38', '2025-08-20 18:14:06', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (191, 204, '撰写技术博客', '2025-08-20 12:30:00', '2025-08-20 13:30:00', '总结近期技术实践,撰写一篇技术博客,分享到个人平台,提升技术表达能力。', '0', '2025-08-20 18:03:38', '2025-08-20 18:03:38', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (192, 204, '阅读技术文档', '2025-08-20 02:00:00', '2025-08-20 03:00:00', '阅读与当前项目相关的技术文档,巩固知识并提升理解能力。', '0', '2025-08-20 18:11:49', '2025-08-20 18:14:03', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (193, 204, '代码复盘与优化', '2025-08-20 05:30:00', '2025-08-20 06:00:00', '回顾LeetCode练习中的代码,进行优化和总结,提升算法效率。', '0', '2025-08-20 18:11:49', '2025-08-20 18:14:05', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (194, 204, '学习设计模式实践应用', '2025-08-20 07:00:00', '2025-08-20 07:50:00', '结合设计模式课程内容,完成一个小项目实践,加深理解。', '0', '2025-08-20 18:11:49', '2025-08-20 18:11:49', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (195, 204, '学习新技术框架', '2025-08-20 09:49:00', '2025-08-20 10:00:00', '学习一款与职业相关的新兴技术框架,如Spring Boot或React Native。', '0', '2025-08-20 18:11:49', '2025-08-20 18:11:49', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (196, 204, '参与开源项目贡献', '2025-08-20 19:00:00', '2025-08-20 20:00:00', '在GitHub上查找合适的开源项目,尝试提交一个Issue或PR,提升实战能力。', '0', '2025-08-20 18:11:49', '2025-08-20 18:11:49', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (197, 204, '阅读技术文档', '2025-08-20 02:10:00', '2025-08-20 03:10:00', '阅读与当前项目相关的技术文档或API文档,提升对开发工具和接口的理解与应用能力。', 'completed', '2025-08-20 18:14:21', '2025-08-20 18:17:05', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (198, 204, '算法练习', '2025-08-20 03:20:00', '2025-08-20 04:20:00', '在LeetCode或牛客网上完成3道算法题目,巩固编程基础并提升逻辑思维能力。', 'completed', '2025-08-20 18:14:21', '2025-08-20 18:17:06', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (199, 204, '学习前端新技术', '2025-08-20 04:30:00', '2025-08-20 05:30:00', '学习并实践Vue 3或React 18的新特性,通过官方文档或入门教程进行初步掌握。', '0', '2025-08-20 18:14:21', '2025-08-20 18:14:21', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (200, 204, '代码重构练习', '2025-08-20 06:00:00', '2025-08-20 07:00:00', '挑选一个旧项目的代码,进行重构优化,提升代码质量和可维护性。', '0', '2025-08-20 18:14:21', '2025-08-20 18:14:21', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (201, 204, '技术博客撰写', '2025-08-20 12:30:00', '2025-08-20 13:30:00', '总结最近的开发经验,撰写一篇技术博客,分享到个人博客平台或掘金等技术社区。', '0', '2025-08-20 18:14:21', '2025-08-20 18:14:21', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (202, 204, '学习新框架文档', '2025-08-20 04:30:00', '2025-08-20 05:30:00', '阅读并实践最新前端框架或后端框架的官方文档,提升技术广度', 'completed', '2025-08-20 18:15:08', '2025-08-20 18:17:08', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (203, 204, '代码重构练习', '2025-08-20 06:00:00', '2025-08-20 07:00:00', '选取过往项目中的一段代码进行重构,提升代码质量和可维护性', 'completed', '2025-08-20 18:15:08', '2025-08-20 18:17:09', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (204, 204, '技术博客写作', '2025-08-20 12:30:00', '2025-08-20 13:30:00', '总结近期开发经验,撰写一篇技术博客,提升表达能力并积累个人品牌', 'completed', '2025-08-20 18:15:08', '2025-08-20 18:17:11', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (205, 204, '在线技术课程学习', '2025-08-20 16:30:00', '2025-08-20 17:30:00', '观看一门高质量的技术课程视频,如架构设计、性能优化等主题', 'completed', '2025-08-20 18:15:08', '2025-08-20 18:17:13', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (206, 204, '开源项目贡献', '2025-08-20 18:00:00', '2025-08-20 19:00:00', '参与一个开源项目,提交一个PR或修复一个已知Issue', 'completed', '2025-08-20 18:15:08', '2025-08-20 18:17:15', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (207, 204, '阅读技术文档', '2025-08-20 02:00:00', '2025-08-20 03:00:00', '阅读与当前项目相关的技术文档或API文档,提升对开发工具和框架的理解。', '0', '2025-08-20 18:17:29', '2025-08-20 18:17:29', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (208, 204, '学习新编程语言', '2025-08-20 03:00:00', '2025-08-20 04:00:00', '利用碎片时间学习一门新编程语言的基础语法,例如Rust或Go语言。', '0', '2025-08-20 18:17:29', '2025-08-20 18:17:29', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (209, 204, '编写个人项目代码', '2025-08-20 04:15:00', '2025-08-20 05:15:00', '开发个人项目的小功能模块,提升实战经验和代码能力。', '0', '2025-08-20 18:17:29', '2025-08-20 18:17:29', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (210, 204, '观看技术分享视频', '2025-08-20 05:30:00', '2025-08-20 06:30:00', '观看与软件开发相关的技术分享视频,了解行业最新动态和技术趋势。', '0', '2025-08-20 18:17:29', '2025-08-20 18:17:29', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (211, 204, '参与技术社区讨论', '2025-08-20 06:30:00', '2025-08-20 07:30:00', '在技术社区(如GitHub、Stack Overflow、知乎)参与技术讨论,提升交流和解决问题的能力。', '0', '2025-08-20 18:17:29', '2025-08-20 18:17:29', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (212, 204, '学习Go语言并发编程', '2025-08-20 02:10:00', '2025-08-20 03:10:00', '通过官方文档和示例代码学习Go语言的goroutine和channel机制', '0', '2025-08-20 18:17:37', '2025-08-20 18:17:37', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (213, 204, '阅读云原生技术论文', '2025-08-20 03:20:00', '2025-08-20 04:20:00', '精读《Cloud Native Patterns》第5章服务发现与负载均衡部分', '0', '2025-08-20 18:17:37', '2025-08-20 18:17:37', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (214, 204, '编写Kubernetes控制器', '2025-08-20 04:30:00', '2025-08-20 05:30:00', '使用Operator SDK开发一个简单的K8s自定义控制器', '0', '2025-08-20 18:17:37', '2025-08-20 18:17:37', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (215, 204, '分析eBPF技术文档', '2025-08-20 06:00:00', '2025-08-20 07:00:00', '研究Cilium项目中的eBPF实现原理和使用场景', '0', '2025-08-20 18:17:37', '2025-08-20 18:17:37', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (216, 204, '重构微服务代码', '2025-08-20 12:10:00', '2025-08-20 13:10:00', '将用户服务模块从单体架构中剥离,实现领域驱动设计', '0', '2025-08-20 18:17:37', '2025-08-20 18:17:37', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (217, 204, '阅读技术文档', '2025-08-20 02:00:00', '2025-08-20 03:00:00', '阅读与当前项目相关的技术文档或API文档,提升对项目架构的理解和技术细节的掌握。', 'completed', '2025-08-20 18:17:52', '2025-08-20 18:30:52', 0);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (218, 204, '学习新技术框架', '2025-08-20 12:30:00', '2025-08-20 13:30:00', '学习一个与工作相关的新技术框架,例如Spring Boot或React,提升技术广度。', 'completed', '2025-08-20 18:17:52', '2025-08-20 18:27:04', 0);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (219, 204, '编写个人项目代码', '2025-08-20 16:30:00', '2025-08-20 17:30:00', '为个人项目编写代码,提升实战经验与工程能力。', 'completed', '2025-08-20 18:17:52', '2025-08-20 18:27:00', 0);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (220, 204, '观看技术视频', '2025-08-20 18:00:00', '2025-08-20 19:00:00', '观看与软件开发相关的技术视频,例如算法讲解或设计模式,提升技术深度。', 'completed', '2025-08-20 18:17:52', '2025-08-20 18:27:01', 0);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (221, 204, '参与开源项目', '2025-08-20 19:00:00', '2025-08-20 20:00:00', '参与一个开源项目,提交代码或解决issue,提升代码协作与社区贡献能力。', 'completed', '2025-08-20 18:17:52', '2025-08-20 18:27:01', 0);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (222, 204, '操作系统基础知识学习', '2025-08-20 03:15:00', '2025-08-20 04:15:00', '学习操作系统的核心概念,如进程管理、内存管理、文件系统等内容,推荐使用《操作系统导论》或《现代操作系统》进行系统性学习。', 'completed', '2025-08-20 18:25:29', '2025-08-20 18:25:46', 0);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (223, 204, '操作系统实践练习', '2025-08-20 04:30:00', '2025-08-20 05:30:00', '通过QEMU+Linux 0.11或MIT xv6进行实践,熟悉系统调用、进程调度等操作系统底层实现。', 'completed', '2025-08-20 18:25:29', '2025-08-20 18:25:45', 0);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (224, 204, '阅读操作系统相关论文', '2025-08-20 06:00:00', '2025-08-20 07:00:00', '阅读操作系统领域的经典论文,如《The UNIX Time-Sharing System》或《A Fast File System for UNIX》提升理论深度。', 'completed', '2025-08-20 18:25:29', '2025-08-20 18:25:44', 0);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (225, 204, '操作系统面试题练习', '2025-08-20 07:00:00', '2025-08-20 07:50:00', '完成常见的操作系统面试题,巩固基础知识,推荐使用LeetCode、牛客网或《剑指Offer》进行练习。', '0', '2025-08-20 18:25:29', '2025-08-20 18:25:29', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (226, 204, '编写简单操作系统模块', '2025-08-20 15:00:00', '2025-08-20 16:00:00', '尝试用C语言编写一个简单的操作系统模块,如内存分配器或进程调度器,提升动手能力。', '0', '2025-08-20 18:25:29', '2025-08-20 18:25:29', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (227, 21, '学习Prometheus监控系统基础', '2025-08-20 10:00:00', '2025-08-20 11:00:00', '学习Prometheus的架构组成、数据模型和基础查询语法,为搭建监控体系打下基础', '0', '2025-08-20 18:42:08', '2025-08-20 18:42:08', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (228, 21, '实践APM工具SkyWalking基础使用', '2025-08-20 11:30:00', '2025-08-20 12:30:00', '部署并配置SkyWalking APM系统,学习如何监控Java应用性能,分析调用链', '0', '2025-08-20 18:42:08', '2025-08-20 18:42:08', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (229, 21, '阅读Grafana可视化仪表盘文档', '2025-08-20 14:00:00', '2025-08-20 15:00:00', '学习如何通过Grafana展示监控数据,配置Elasticsearch作为数据源,并构建日志分析看板', '0', '2025-08-20 18:42:08', '2025-08-20 18:42:08', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (230, 21, '学习Zabbix监控系统的安装与配置', '2025-08-20 15:30:00', '2025-08-20 16:30:00', '搭建Zabbix本地环境,配置主机监控与报警策略,了解其在企业中的常见使用场景', '0', '2025-08-20 18:42:08', '2025-08-20 18:42:08', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (231, 21, '了解OpenTelemetry及其生态系统', '2025-08-20 19:00:00', '2025-08-20 20:00:00', '学习OpenTelemetry的核心概念,理解其在分布式追踪和指标采集中的作用', '0', '2025-08-20 18:42:08', '2025-08-20 18:42:08', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (232, 34, '学习Capacitor基础概念', '2025-08-20 10:00:00', '2025-08-20 11:00:00', '学习Capacitor的基本概念与架构,了解其在混合开发中的作用与优势。', '0', '2025-08-20 18:42:09', '2025-08-20 18:42:09', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (233, 34, 'Capacitor官方文档阅读与实践', '2025-08-20 11:30:00', '2025-08-20 12:30:00', '阅读Capacitor官方文档,搭建开发环境并运行第一个Capacitor项目。', '0', '2025-08-20 18:42:09', '2025-08-20 18:42:09', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (234, 34, '掌握Capacitor插件机制', '2025-08-20 14:00:00', '2025-08-20 15:00:00', '学习Capacitor插件的工作原理,熟悉插件的注册、调用和生命周期管理。', '0', '2025-08-20 18:42:09', '2025-08-20 18:42:09', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (235, 34, '开发一个简单插件', '2025-08-20 15:30:00', '2025-08-20 16:30:00', '尝试开发一个简单的Capacitor插件,例如实现Toast消息提示功能。', '0', '2025-08-20 18:42:09', '2025-08-20 18:42:09', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (236, 34, '调试与优化插件', '2025-08-20 19:00:00', '2025-08-20 20:00:00', '对已开发的Capacitor插件进行调试,优化其兼容性和性能。', '0', '2025-08-20 18:42:09', '2025-08-20 18:42:09', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (237, 24, '学习可观测性基础知识', '2025-08-20 10:00:00', '2025-08-20 11:00:00', '阅读《可观测性核心原理与实践》文章,理解日志、指标、追踪三大支柱。', '0', '2025-08-20 18:42:09', '2025-08-20 18:42:09', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (238, 24, '实战Prometheus监控配置', '2025-08-20 11:30:00', '2025-08-20 12:30:00', '部署一个本地服务并使用Prometheus对其进行监控配置,学习exporter的使用方法。', '0', '2025-08-20 18:42:09', '2025-08-20 18:42:09', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (239, 24, 'Grafana仪表盘设计练习', '2025-08-20 15:00:00', '2025-08-20 16:00:00', '基于已有监控数据,在Grafana中设计并优化一个服务健康状态的可视化仪表盘。', '0', '2025-08-20 18:42:09', '2025-08-20 18:42:09', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (240, 24, '阅读运维相关技术博客', '2025-08-20 16:30:00', '2025-08-20 17:30:00', '浏览SRE、DevOps等领域知名技术博客,学习行业最佳实践,提升运维能力。', '0', '2025-08-20 18:42:09', '2025-08-20 18:42:09', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (241, 24, '练习编写自动化运维脚本', '2025-08-20 19:00:00', '2025-08-20 20:00:00', '使用Shell或Python编写一个自动化日志收集和分析的小工具,提升运维效率。', '0', '2025-08-20 18:42:09', '2025-08-20 18:42:09', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (242, 32, '学习Android原生开发基础', '2025-08-20 10:00:00', '2025-08-20 11:00:00', '学习Android原生开发基础知识,包括布局、生命周期、Intent等核心概念。', '0', '2025-08-20 18:42:09', '2025-08-20 18:42:09', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (243, 32, '研究React Native与原生模块通信机制', '2025-08-20 11:30:00', '2025-08-20 12:30:00', '深入研究React Native与原生模块之间的通信机制,掌握Bridge原理及调用方式。', '0', '2025-08-20 18:42:09', '2025-08-20 18:42:09', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (244, 32, '性能优化学习与实践', '2025-08-20 14:00:00', '2025-08-20 15:00:00', '学习React Native应用性能优化技巧,如减少JS与原生通信、使用原生动画等,并进行实践优化。', '0', '2025-08-20 18:42:09', '2025-08-20 18:42:09', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (245, 32, '阅读Android性能优化相关文章', '2025-08-20 15:30:00', '2025-08-20 16:30:00', '阅读Google官方或知名技术博客关于Android性能优化的文章,提升对原生性能调优的理解。', '0', '2025-08-20 18:42:09', '2025-08-20 18:42:09', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (246, 32, '搭建原生开发练习项目', '2025-08-20 19:00:00', '2025-08-20 20:00:00', '使用Android Studio创建一个简单的原生应用项目,练习基本功能开发,如网络请求、数据存储等。', '0', '2025-08-20 18:42:09', '2025-08-20 18:42:09', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (247, 13, '学习分布式系统基础概念', '2025-08-20 10:00:00', '2025-08-20 11:00:00', '阅读《Designing Data-Intensive Applications》书籍,重点理解分布式系统的基本原理和设计模式', '0', '2025-08-20 18:42:09', '2025-08-20 18:42:09', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (248, 13, '实践Erlang并发编程', '2025-08-20 11:30:00', '2025-08-20 12:30:00', '编写一个使用Erlang实现的并发程序,例如多进程消息传递系统,强化对轻量进程和消息传递机制的理解', '0', '2025-08-20 18:42:09', '2025-08-20 18:42:09', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (249, 13, '研究RabbitMQ高级特性', '2025-08-20 14:00:00', '2025-08-20 15:00:00', '深入学习RabbitMQ的高级功能,如死信队列、延迟交换器、镜像队列,并尝试配置相关功能', '0', '2025-08-20 18:42:09', '2025-08-20 18:42:09', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (250, 13, '观看Elixir并发编程视频教程', '2025-08-20 15:30:00', '2025-08-20 16:30:00', '观看Elixir并发编程相关视频教程,如ElixirConf演讲或黑马程序员进阶课程,提升对Actor模型的应用能力', '0', '2025-08-20 18:42:09', '2025-08-20 18:42:09', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (251, 13, '模拟实现简单分布式系统', '2025-08-20 19:00:00', '2025-08-20 20:00:00', '使用Erlang/Elixir构建一个简单的分布式系统,例如一个节点间可以互相通信的分布式计数器或任务调度器', '0', '2025-08-20 18:42:09', '2025-08-20 18:42:09', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (252, 7, '学习Azure基础服务概述', '2025-08-20 10:00:00', '2025-08-20 11:00:00', '了解Azure云平台的基本服务与功能,重点学习计算、存储和网络相关服务。', '0', '2025-08-20 18:42:10', '2025-08-20 18:42:10', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (253, 7, '实践Azure虚拟机部署', '2025-08-20 11:30:00', '2025-08-20 12:30:00', '在Azure平台上动手部署一个Windows或Linux虚拟机,熟悉基本的云资源创建流程。', '0', '2025-08-20 18:42:10', '2025-08-20 18:42:10', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (254, 7, '学习Azure架构设计原则', '2025-08-20 14:00:00', '2025-08-20 15:00:00', '学习云架构的最佳实践,包括高可用性、弹性扩展、安全性等架构设计原则。', '0', '2025-08-20 18:42:10', '2025-08-20 18:42:10', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (255, 7, '实践Azure App Service部署应用', '2025-08-20 15:30:00', '2025-08-20 16:30:00', '使用Azure App Service部署一个简单的.NET应用,了解PaaS服务的使用方式。', '0', '2025-08-20 18:42:10', '2025-08-20 18:42:10', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (256, 7, '学习Azure DevOps与CI/CD流程', '2025-08-20 19:00:00', '2025-08-20 20:00:00', '了解Azure DevOps工具链,配置CI/CD流水线,提升云原生开发与部署能力。', '0', '2025-08-20 18:42:10', '2025-08-20 18:42:10', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (257, 4, '学习分布式系统基础概念', '2025-08-20 10:00:00', '2025-08-20 11:00:00', '阅读分布式系统的基本原理,包括CAP理论、一致性协议、分布式事务等核心知识点', '0', '2025-08-20 18:42:10', '2025-08-20 18:42:10', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (258, 4, '性能优化学习:Linux系统调优', '2025-08-20 11:30:00', '2025-08-20 12:30:00', '学习Linux系统性能调优方法,包括IO、内存、CPU等关键指标的监控与优化', '0', '2025-08-20 18:42:10', '2025-08-20 18:42:10', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (259, 4, '实践C++多线程编程', '2025-08-20 15:00:00', '2025-08-20 16:00:00', '编写并测试C++多线程程序,掌握线程同步、锁机制、原子操作等并发编程技巧', '0', '2025-08-20 18:42:10', '2025-08-20 18:42:10', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (260, 4, '使用Qt实现简单的网络通信程序', '2025-08-20 16:30:00', '2025-08-20 17:30:00', '使用Qt编写一个TCP/UDP通信的小型项目,熟悉Qt网络模块的使用方法', '0', '2025-08-20 18:42:10', '2025-08-20 18:42:10', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (261, 4, '阅读高性能系统设计案例', '2025-08-20 19:00:00', '2025-08-20 20:00:00', '学习经典高性能系统的架构设计案例,理解高性能服务器的设计模式与实现思路', '0', '2025-08-20 18:42:10', '2025-08-20 18:42:10', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (262, 22, '学习Apache Flink基础概念', '2025-08-20 10:00:00', '2025-08-20 11:00:00', '学习Flink的架构、核心概念(如DataStream API、Window操作等)以及与Kafka的集成方式。', '0', '2025-08-20 18:42:10', '2025-08-20 18:42:10', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (263, 22, '实践Flink状态管理与容错机制', '2025-08-20 11:30:00', '2025-08-20 12:30:00', '动手实验Flink的状态管理(如Keyed State)、检查点机制(Checkpointing)以及Exactly-Once语义。', '0', '2025-08-20 18:42:10', '2025-08-20 18:42:10', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (264, 22, '学习Kafka Streams并实践简单流应用', '2025-08-20 14:00:00', '2025-08-20 15:00:00', '了解Kafka Streams的核心API,编写一个从Kafka读取数据、进行简单处理再写回Kafka的流处理应用。', '0', '2025-08-20 18:42:10', '2025-08-20 18:42:10', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (265, 22, '了解实时计算中的事件时间与处理时间', '2025-08-20 15:30:00', '2025-08-20 16:30:00', '深入理解事件时间(Event Time)和处理时间(Process Time)的区别,以及如何在Flink或Kafka Streams中使用时间戳提取器和水印生成器。', '0', '2025-08-20 18:42:10', '2025-08-20 18:42:10', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (266, 22, '学习Flink CEP(复杂事件处理)', '2025-08-20 17:00:00', '2025-08-20 18:00:00', '学习Flink CEP库的基本用法,例如检测特定事件模式(如连续失败登录、异常行为监控)。', '0', '2025-08-20 18:42:10', '2025-08-20 18:42:10', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (267, 20, '学习事件驱动架构基础概念', '2025-08-20 10:00:00', '2025-08-20 11:00:00', '阅读事件驱动架构(Event-Driven Architecture)的核心概念与常见模式,理解事件驱动与传统请求-响应模型的区别。', '0', '2025-08-20 18:42:11', '2025-08-20 18:42:11', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (268, 20, '实践事件驱动架构的简单案例', '2025-08-20 11:30:00', '2025-08-20 12:30:00', '使用Kafka或RabbitMQ实现一个简单的事件发布/订阅系统,结合微服务进行消息传递测试。', '0', '2025-08-20 18:42:11', '2025-08-20 18:42:11', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (269, 20, '阅读系统设计原则相关文章', '2025-08-20 15:00:00', '2025-08-20 16:00:00', '学习CAP定理、CQRS、Event Sourcing等系统设计中的关键原则,提升系统架构理解能力。', '0', '2025-08-20 18:42:11', '2025-08-20 18:42:11', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (270, 20, '构建基于Apollo的GraphQL微服务示例', '2025-08-20 16:30:00', '2025-08-20 17:30:00', '使用Apollo Server与GraphQL构建一个简单的微服务示例,模拟服务间通过GraphQL进行数据交互。', '0', '2025-08-20 18:42:11', '2025-08-20 18:42:11', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (271, 20, '观看事件驱动架构技术分享', '2025-08-20 19:00:00', '2025-08-20 20:00:00', '观看有关事件驱动架构的技术演讲或会议录像,如Kafka Summit或DDD eXchange相关内容。', '0', '2025-08-20 18:42:11', '2025-08-20 18:42:11', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (272, 10, 'Flutter环境搭建与基础配置', '2025-08-20 10:00:00', '2025-08-20 11:00:00', '安装Flutter SDK,配置Xcode与Android Studio的Flutter插件,完成第一个Flutter项目创建。', '0', '2025-08-20 18:42:11', '2025-08-20 18:42:11', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (273, 10, '学习Flutter基础组件', '2025-08-20 13:00:00', '2025-08-20 14:00:00', '学习并实践Text、Container、Row、Column等基础UI组件,构建简单的跨平台界面。', '0', '2025-08-20 18:42:11', '2025-08-20 18:42:11', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (274, 10, '对比Swift与Flutter的布局方式', '2025-08-20 15:30:00', '2025-08-20 16:30:00', '总结iOS开发中使用SwiftUI或Storyboard的布局方式与Flutter的Widget布局差异,记录学习心得。', '0', '2025-08-20 18:42:11', '2025-08-20 18:42:11', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (275, 10, 'Flutter状态管理入门', '2025-08-20 17:30:00', '2025-08-20 18:30:00', '学习Flutter中StatefulWidget与setState机制,理解状态管理的基本原理。', '0', '2025-08-20 18:42:11', '2025-08-20 18:42:11', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (276, 10, '观看Flutter官方文档或入门视频', '2025-08-20 19:00:00', '2025-08-20 20:00:00', '观看Flutter官网的Getting Started教程视频或官方文档,系统了解Flutter开发流程。', '0', '2025-08-20 18:42:11', '2025-08-20 18:42:11', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (277, 204, '复习操作系统进程调度算法', '2025-08-20 05:45:00', '2025-08-20 06:45:00', '复习操作系统中进程调度相关算法,如FCFS、SJF、优先级调度、时间片轮转等,加深理解并尝试画出调度流程图。', '0', '2025-08-20 18:44:09', '2025-08-20 18:44:09', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (278, 204, '阅读一篇操作系统内核设计文章', '2025-08-20 07:15:00', '2025-08-20 08:15:00', '阅读一篇关于操作系统内核设计的文章,理解其模块化结构、核心功能及实现原理。', '0', '2025-08-20 18:44:09', '2025-08-20 18:44:09', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (279, 204, '总结技术文档中的关键知识点', '2025-08-20 03:00:00', '2025-08-20 03:45:00', '总结今日阅读的技术文档中的关键知识点,形成笔记或思维导图,便于后续回顾与查阅。', '0', '2025-08-20 18:44:09', '2025-08-20 18:44:09', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (280, 204, '学习新技术框架的核心概念', '2025-08-20 13:45:00', '2025-08-20 14:45:00', '针对今日学习的新技术框架,梳理其核心概念、使用场景和基本示例代码。', '0', '2025-08-20 18:44:09', '2025-08-20 18:44:09', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (281, 204, '优化个人项目代码结构', '2025-08-20 17:45:00', '2025-08-20 18:45:00', '在编写完个人项目代码后,花时间回顾并优化代码结构,提取可复用的模块,提高代码可读性。', '0', '2025-08-20 18:44:09', '2025-08-20 18:44:09', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (282, 205, '玩原神', '2025-08-20 01:00:00', '2025-08-20 02:00:00', '', 'completed', '2025-08-20 20:15:18', '2025-08-20 20:16:17', 0);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (283, 205, '打瓦', '2025-08-20 02:00:00', '2025-08-20 04:00:00', '', 'completed', '2025-08-20 20:15:32', '2025-08-20 20:16:17', 0);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (284, 205, 'Dubbo核心概念学习', '2025-08-20 08:00:00', '2025-08-20 09:00:00', '学习Dubbo框架的核心概念,如服务注册与发现、负载均衡、容错机制等,为后续实战打下理论基础。', 'completed', '2025-08-20 20:15:43', '2025-08-20 20:17:55', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (285, 205, '搭建Dubbo本地开发环境', '2025-08-20 12:30:00', '2025-08-20 13:30:00', '配置Zookeeper作为注册中心,并搭建一个简单的Dubbo服务提供者与消费者,完成本地环境验证。', 'completed', '2025-08-20 20:15:43', '2025-08-20 20:17:55', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (286, 205, 'Dubbo服务调用实战练习', '2025-08-20 17:00:00', '2025-08-20 18:00:00', '编写一个简单的订单服务调用示例,服务消费者调用用户服务和订单服务,模拟微服务之间的通信。', 'pending', '2025-08-20 20:15:43', '2025-08-20 20:17:57', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (287, 205, 'Dubbo配置与优化学习', '2025-08-20 19:00:00', '2025-08-20 20:00:00', '学习Dubbo的配置方式,包括协议配置、超时设置、线程池配置等,并尝试优化服务调用性能。', 'pending', '2025-08-20 20:15:43', '2025-08-20 20:17:57', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (288, 205, 'Dubbo核心概念学习', '2025-08-20 09:00:00', '2025-08-20 10:00:00', '学习Dubbo的核心概念,如服务注册与发现、负载均衡、容错机制等,理解其在分布式系统中的作用。', 'pending', '2025-08-20 20:18:09', '2025-08-20 20:18:31', 0);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (289, 205, 'Dubbo环境搭建与简单示例', '2025-08-20 10:30:00', '2025-08-20 11:30:00', '搭建Dubbo的开发环境,并完成一个简单的服务提供者与消费者的示例,掌握基本配置和使用方式。', 'pending', '2025-08-20 20:18:09', '2025-08-20 20:18:31', 0);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (290, 205, 'Dubbo与Spring Boot集成', '2025-08-20 14:00:00', '2025-08-20 15:00:00', '学习如何将Dubbo与Spring Boot集成,掌握基于Spring Boot的Dubbo项目搭建方式。', 'pending', '2025-08-20 20:18:09', '2025-08-20 20:18:31', 0);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (291, 205, 'Dubbo源码初探', '2025-08-20 16:00:00', '2025-08-20 17:00:00', '阅读Dubbo部分核心模块的源码,了解其架构设计和实现原理,提升技术深度。', 'pending', '2025-08-20 20:18:09', '2025-08-20 20:18:28', 0);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (292, 205, 'Dubbo最佳实践与问题排查', '2025-08-20 18:00:00', '2025-08-20 19:00:00', '学习Dubbo在实际项目中的最佳实践,以及常见问题的排查方法与技巧。', 'pending', '2025-08-20 20:18:09', '2025-08-20 20:18:29', 0);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (293, 205, '回顾Dubbo核心概念并整理笔记', '2025-08-20 11:45:00', '2025-08-20 12:45:00', '复习早上学习的Dubbo核心概念,整理成清晰的知识点笔记,便于后续复习与回顾。', '0', '2025-08-20 20:40:22', '2025-08-20 20:40:22', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (294, 205, '动手实现Dubbo简单示例并测试', '2025-08-20 12:45:00', '2025-08-20 13:45:00', '根据上午的环境搭建内容,编写一个完整的Dubbo服务提供者与消费者示例,并进行测试验证。', '0', '2025-08-20 20:40:22', '2025-08-20 20:40:22', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (295, 205, '查阅Dubbo与Spring Boot集成的进阶配置', '2025-08-20 15:15:00', '2025-08-20 16:15:00', '深入阅读Dubbo与Spring Boot集成的文档,了解自动装配、注解驱动等进阶配置方式。', '0', '2025-08-20 20:40:22', '2025-08-20 20:40:22', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (296, 205, '调试Dubbo源码核心模块', '2025-08-20 17:15:00', '2025-08-20 18:15:00', '基于下午的源码初探内容,调试Dubbo服务注册与发现的核心模块代码,理解调用流程。', '0', '2025-08-20 20:40:22', '2025-08-20 20:40:22', 1);
INSERT INTO bitgain.fixed_task (id, user_id, title, start_time, end_time, description, status, create_time, update_time, deleted) VALUES (297, 205, '整理Dubbo最佳实践与常见问题解决方案', '2025-08-20 19:15:00', '2025-08-20 20:00:00', '结合晚上学习的最佳实践内容,整理常见问题排查方法和实际开发中需要注意的点。', '0', '2025-08-20 20:40:22', '2025-08-20 20:40:22', 1);
create table today_goal
(
id bigint auto_increment
primary key,
user_id bigint not null,
goal text not null,
create_time datetime default CURRENT_TIMESTAMP not null,
update_time datetime default CURRENT_TIMESTAMP not null on update CURRENT_TIMESTAMP
);