You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
381 lines
98 KiB
SQL
381 lines
98 KiB
SQL
create table appointments
|
|
(
|
|
id bigint unsigned auto_increment
|
|
primary key,
|
|
date date not null,
|
|
week tinyint not null,
|
|
start_time time not null,
|
|
end_time time not null,
|
|
stop_time time not null,
|
|
max_count bigint not null,
|
|
used_count bigint not null,
|
|
hospital bigint not null,
|
|
status tinyint not null,
|
|
del tinyint default 2 not null,
|
|
created_at timestamp null,
|
|
updated_at timestamp null
|
|
)
|
|
collate = utf8mb4_unicode_ci;
|
|
|
|
create index appointments_date_index
|
|
on appointments (date);
|
|
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (1, '2023-04-03', 1, '08:00:00', '13:00:00', '07:00:00', 30, -1, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (2, '2023-04-04', 2, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (3, '2023-04-05', 3, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (4, '2023-04-06', 4, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (5, '2023-04-07', 5, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (6, '2023-04-10', 1, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (7, '2023-04-11', 2, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (8, '2023-04-12', 3, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (9, '2023-04-13', 4, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (10, '2023-04-14', 5, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (11, '2023-04-17', 1, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (12, '2023-04-18', 2, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (13, '2023-04-19', 3, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (14, '2023-04-20', 4, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (15, '2023-04-21', 5, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (16, '2023-04-23', 7, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (17, '2023-04-24', 1, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (18, '2023-04-25', 2, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (19, '2023-04-26', 3, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (20, '2023-04-27', 4, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (21, '2023-04-28', 5, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (22, '2023-05-01', 1, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 1, '2023-04-09 00:55:45', '2023-04-10 15:33:18');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (23, '2023-05-02', 2, '08:00:00', '13:00:00', '07:00:00', 50, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-10 15:32:56');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (24, '2023-05-03', 3, '08:00:00', '13:00:00', '07:00:00', 50, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-10 15:32:56');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (25, '2023-05-04', 4, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (26, '2023-05-05', 5, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (27, '2023-05-06', 6, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (28, '2023-05-08', 1, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (29, '2023-05-09', 2, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (30, '2023-05-10', 3, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (31, '2023-05-11', 4, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (32, '2023-05-12', 5, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (33, '2023-05-15', 1, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (34, '2023-05-16', 2, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (35, '2023-05-17', 3, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (36, '2023-05-18', 4, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (37, '2023-05-19', 5, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (38, '2023-05-22', 1, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (39, '2023-05-23', 2, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (40, '2023-05-24', 3, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (41, '2023-05-25', 4, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (42, '2023-05-26', 5, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (43, '2023-05-29', 1, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (44, '2023-05-30', 2, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (45, '2023-05-31', 3, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (46, '2023-06-01', 4, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (47, '2023-06-02', 5, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (48, '2023-06-05', 1, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (49, '2023-06-06', 2, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (50, '2023-06-07', 3, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (51, '2023-06-08', 4, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (52, '2023-06-09', 5, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (53, '2023-06-12', 1, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (54, '2023-06-13', 2, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (55, '2023-06-14', 3, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (56, '2023-06-15', 4, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (57, '2023-06-16', 5, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (58, '2023-06-19', 1, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (59, '2023-06-20', 2, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (60, '2023-06-21', 3, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (61, '2023-06-22', 4, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (62, '2023-06-23', 5, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (63, '2023-06-25', 7, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (64, '2023-06-26', 1, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (65, '2023-06-27', 2, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (66, '2023-06-28', 3, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (67, '2023-06-29', 4, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (68, '2023-06-30', 5, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (69, '2023-07-03', 1, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (70, '2023-07-04', 2, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (71, '2023-07-05', 3, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (72, '2023-07-06', 4, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (73, '2023-07-07', 5, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (74, '2023-07-10', 1, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (75, '2023-07-11', 2, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (76, '2023-07-12', 3, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (77, '2023-07-13', 4, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (78, '2023-07-14', 5, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (79, '2023-07-17', 1, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (80, '2023-07-18', 2, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (81, '2023-07-19', 3, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (82, '2023-07-20', 4, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (83, '2023-07-21', 5, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (84, '2023-07-24', 1, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (85, '2023-07-25', 2, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (86, '2023-07-26', 3, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (87, '2023-07-27', 4, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (88, '2023-07-28', 5, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-09 00:55:45', '2023-04-09 00:55:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (89, '2023-04-03', 1, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (90, '2023-04-04', 2, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (91, '2023-04-06', 4, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (92, '2023-04-07', 5, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (93, '2023-04-10', 1, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (94, '2023-04-11', 2, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (95, '2023-04-12', 3, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (96, '2023-04-13', 4, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (97, '2023-04-14', 5, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (98, '2023-04-17', 1, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (99, '2023-04-18', 2, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (100, '2023-04-19', 3, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (101, '2023-04-20', 4, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (102, '2023-04-21', 5, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (103, '2023-04-23', 7, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (104, '2023-04-24', 1, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (105, '2023-04-25', 2, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (106, '2023-04-26', 3, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (107, '2023-04-27', 4, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (108, '2023-04-28', 5, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (109, '2023-05-04', 4, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (110, '2023-05-05', 5, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (111, '2023-05-06', 6, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (112, '2023-05-08', 1, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (113, '2023-05-09', 2, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (114, '2023-05-10', 3, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (115, '2023-05-11', 4, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (116, '2023-05-12', 5, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (117, '2023-05-15', 1, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (118, '2023-05-16', 2, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (119, '2023-05-17', 3, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (120, '2023-05-18', 4, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (121, '2023-05-19', 5, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (122, '2023-05-22', 1, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (123, '2023-05-23', 2, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (124, '2023-05-24', 3, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (125, '2023-05-25', 4, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (126, '2023-05-26', 5, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (127, '2023-05-29', 1, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (128, '2023-05-30', 2, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (129, '2023-05-31', 3, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (130, '2023-06-01', 4, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (131, '2023-06-02', 5, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (132, '2023-06-05', 1, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (133, '2023-06-06', 2, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (134, '2023-06-07', 3, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (135, '2023-06-08', 4, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (136, '2023-06-09', 5, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (137, '2023-06-12', 1, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (138, '2023-06-13', 2, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (139, '2023-06-14', 3, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (140, '2023-06-15', 4, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (141, '2023-06-16', 5, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (142, '2023-06-19', 1, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (143, '2023-06-20', 2, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (144, '2023-06-21', 3, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (145, '2023-06-25', 7, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (146, '2023-06-26', 1, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (147, '2023-06-27', 2, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (148, '2023-06-28', 3, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (149, '2023-06-29', 4, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (150, '2023-06-30', 5, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (151, '2023-07-03', 1, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (152, '2023-07-04', 2, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (153, '2023-07-05', 3, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (154, '2023-07-06', 4, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (155, '2023-07-07', 5, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (156, '2023-07-10', 1, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (157, '2023-07-11', 2, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (158, '2023-07-12', 3, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (159, '2023-07-13', 4, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (160, '2023-07-14', 5, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (161, '2023-07-17', 1, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (162, '2023-07-18', 2, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (163, '2023-07-19', 3, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (164, '2023-07-20', 4, '14:00:00', '17:00:00', '13:00:00', 20, 0, 2, 1, 2, '2023-04-09 00:59:27', '2023-04-09 00:59:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (165, '2023-04-03', 1, '18:00:00', '20:00:00', '19:00:00', 30, 0, 2, 1, 2, '2023-04-10 10:52:29', '2023-04-10 10:52:29');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (166, '2023-04-04', 2, '18:00:00', '20:00:00', '19:00:00', 30, 0, 2, 1, 2, '2023-04-10 10:52:29', '2023-04-10 10:52:29');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (167, '2023-04-06', 4, '18:00:00', '20:00:00', '19:00:00', 30, 0, 2, 1, 2, '2023-04-10 10:52:29', '2023-04-10 10:52:29');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (168, '2023-04-07', 5, '18:00:00', '20:00:00', '19:00:00', 30, 0, 2, 1, 2, '2023-04-10 10:52:29', '2023-04-10 10:52:29');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (169, '2023-04-10', 1, '18:00:00', '20:00:00', '19:00:00', 30, 0, 2, 1, 2, '2023-04-10 10:52:29', '2023-04-10 10:52:29');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (170, '2023-04-11', 2, '18:00:00', '20:00:00', '19:00:00', 30, 0, 2, 1, 2, '2023-04-10 10:52:29', '2023-04-10 10:52:29');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (171, '2023-04-12', 3, '18:00:00', '20:00:00', '19:00:00', 30, 0, 2, 1, 2, '2023-04-10 10:52:29', '2023-04-10 10:52:29');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (172, '2023-04-13', 4, '18:00:00', '20:00:00', '19:00:00', 30, 0, 2, 1, 2, '2023-04-10 10:52:29', '2023-04-10 10:52:29');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (173, '2023-04-14', 5, '18:00:00', '20:00:00', '19:00:00', 30, 0, 2, 1, 2, '2023-04-10 10:52:29', '2023-04-10 10:52:29');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (174, '2023-04-17', 1, '18:00:00', '20:00:00', '19:00:00', 30, 0, 2, 1, 2, '2023-04-10 10:52:29', '2023-04-10 10:52:29');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (175, '2023-04-18', 2, '18:00:00', '20:00:00', '19:00:00', 30, 0, 2, 1, 2, '2023-04-10 10:52:29', '2023-04-10 10:52:29');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (176, '2023-04-19', 3, '18:00:00', '20:00:00', '19:00:00', 30, 0, 2, 1, 2, '2023-04-10 10:52:29', '2023-04-10 10:52:29');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (177, '2023-04-20', 4, '18:00:00', '20:00:00', '19:00:00', 30, 0, 2, 1, 2, '2023-04-10 10:52:29', '2023-04-10 10:52:29');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (178, '2023-04-21', 5, '18:00:00', '20:00:00', '19:00:00', 30, 0, 2, 1, 2, '2023-04-10 10:52:29', '2023-04-10 10:52:29');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (179, '2023-04-23', 7, '18:00:00', '20:00:00', '19:00:00', 30, 0, 2, 1, 2, '2023-04-10 10:52:29', '2023-04-10 10:52:29');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (180, '2023-04-24', 1, '18:00:00', '20:00:00', '19:00:00', 30, 0, 2, 1, 2, '2023-04-10 10:52:29', '2023-04-10 10:52:29');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (181, '2023-04-25', 2, '18:00:00', '20:00:00', '19:00:00', 30, 0, 2, 1, 2, '2023-04-10 10:52:29', '2023-04-10 10:52:29');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (182, '2023-04-26', 3, '18:00:00', '20:00:00', '19:00:00', 30, 0, 2, 1, 2, '2023-04-10 10:52:29', '2023-04-10 10:52:29');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (183, '2023-04-27', 4, '18:00:00', '20:00:00', '19:00:00', 30, 0, 2, 1, 2, '2023-04-10 10:52:29', '2023-04-10 10:52:29');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (184, '2023-04-28', 5, '18:00:00', '20:00:00', '19:00:00', 30, 0, 2, 1, 2, '2023-04-10 10:52:29', '2023-04-10 10:52:29');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (185, '2023-05-04', 4, '18:00:00', '20:00:00', '19:00:00', 30, 0, 2, 1, 2, '2023-04-10 10:52:29', '2023-04-10 10:52:29');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (186, '2023-05-05', 5, '18:00:00', '20:00:00', '19:00:00', 30, 0, 2, 1, 2, '2023-04-10 10:52:29', '2023-04-10 10:52:29');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (187, '2023-05-06', 6, '18:00:00', '20:00:00', '19:00:00', 30, 0, 2, 1, 2, '2023-04-10 10:52:29', '2023-04-10 10:52:29');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (188, '2023-05-08', 1, '18:00:00', '20:00:00', '19:00:00', 30, 0, 2, 1, 2, '2023-04-10 10:52:29', '2023-04-10 10:52:29');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (189, '2023-05-09', 2, '18:00:00', '20:00:00', '19:00:00', 30, 0, 2, 1, 2, '2023-04-10 10:52:29', '2023-04-10 10:52:29');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (190, '2023-05-10', 3, '18:00:00', '20:00:00', '19:00:00', 30, 0, 2, 1, 2, '2023-04-10 10:52:29', '2023-04-10 10:52:29');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (191, '2023-05-11', 4, '18:00:00', '20:00:00', '19:00:00', 30, 0, 2, 1, 2, '2023-04-10 10:52:29', '2023-04-10 10:52:29');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (192, '2023-05-12', 5, '18:00:00', '20:00:00', '19:00:00', 30, 0, 2, 1, 2, '2023-04-10 10:52:29', '2023-04-10 10:52:29');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (193, '2023-05-15', 1, '18:00:00', '20:00:00', '19:00:00', 30, 0, 2, 1, 2, '2023-04-10 10:52:29', '2023-04-10 10:52:29');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (194, '2023-05-16', 2, '18:00:00', '20:00:00', '19:00:00', 30, 0, 2, 1, 2, '2023-04-10 10:52:29', '2023-04-10 10:52:29');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (195, '2023-05-17', 3, '18:00:00', '20:00:00', '19:00:00', 30, 0, 2, 1, 2, '2023-04-10 10:52:29', '2023-04-10 10:52:29');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (196, '2023-05-18', 4, '18:00:00', '20:00:00', '19:00:00', 30, 0, 2, 1, 2, '2023-04-10 10:52:29', '2023-04-10 10:52:29');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (197, '2023-05-19', 5, '18:00:00', '20:00:00', '19:00:00', 30, 0, 2, 1, 2, '2023-04-10 10:52:29', '2023-04-10 10:52:29');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (198, '2023-05-22', 1, '18:00:00', '20:00:00', '19:00:00', 30, 0, 2, 1, 2, '2023-04-10 10:52:29', '2023-04-10 10:52:29');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (199, '2023-05-23', 2, '18:00:00', '20:00:00', '19:00:00', 30, 0, 2, 1, 2, '2023-04-10 10:52:29', '2023-04-10 10:52:29');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (200, '2023-05-24', 3, '18:00:00', '20:00:00', '19:00:00', 30, 0, 2, 1, 2, '2023-04-10 10:52:29', '2023-04-10 10:52:29');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (201, '2023-05-25', 4, '18:00:00', '20:00:00', '19:00:00', 30, 0, 2, 1, 2, '2023-04-10 10:52:29', '2023-04-10 10:52:29');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (202, '2023-05-26', 5, '18:00:00', '20:00:00', '19:00:00', 30, 0, 2, 1, 2, '2023-04-10 10:52:29', '2023-04-10 10:52:29');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (203, '2023-05-29', 1, '18:00:00', '20:00:00', '19:00:00', 30, 0, 2, 1, 2, '2023-04-10 10:52:29', '2023-04-10 10:52:29');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (204, '2023-05-30', 2, '18:00:00', '20:00:00', '19:00:00', 30, 0, 2, 1, 2, '2023-04-10 10:52:29', '2023-04-10 10:52:29');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (205, '2023-05-31', 3, '18:00:00', '20:00:00', '19:00:00', 30, 0, 2, 1, 2, '2023-04-10 10:52:29', '2023-04-10 10:52:29');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (206, '2023-06-01', 4, '18:00:00', '20:00:00', '19:00:00', 30, 0, 2, 1, 2, '2023-04-10 10:52:29', '2023-04-10 10:52:29');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (207, '2023-06-02', 5, '18:00:00', '20:00:00', '19:00:00', 30, 0, 2, 1, 2, '2023-04-10 10:52:29', '2023-04-10 10:52:29');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (208, '2023-06-05', 1, '18:00:00', '20:00:00', '19:00:00', 30, 0, 2, 1, 2, '2023-04-10 10:52:29', '2023-04-10 10:52:29');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (209, '2023-06-06', 2, '18:00:00', '20:00:00', '19:00:00', 30, 0, 2, 1, 2, '2023-04-10 10:52:29', '2023-04-10 10:52:29');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (210, '2023-06-07', 3, '18:00:00', '20:00:00', '19:00:00', 30, 0, 2, 1, 2, '2023-04-10 10:52:29', '2023-04-10 10:52:29');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (211, '2023-06-08', 4, '18:00:00', '20:00:00', '19:00:00', 30, 0, 2, 1, 2, '2023-04-10 10:52:29', '2023-04-10 10:52:29');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (212, '2023-06-09', 5, '18:00:00', '20:00:00', '19:00:00', 30, 0, 2, 1, 2, '2023-04-10 10:52:29', '2023-04-10 10:52:29');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (213, '2023-06-12', 1, '18:00:00', '20:00:00', '19:00:00', 30, 0, 2, 1, 2, '2023-04-10 10:52:29', '2023-04-10 10:52:29');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (214, '2023-06-13', 2, '18:00:00', '20:00:00', '19:00:00', 30, 0, 2, 1, 2, '2023-04-10 10:52:29', '2023-04-10 10:52:29');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (215, '2023-06-14', 3, '18:00:00', '20:00:00', '19:00:00', 30, 0, 2, 1, 2, '2023-04-10 10:52:29', '2023-04-10 10:52:29');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (216, '2023-06-15', 4, '18:00:00', '20:00:00', '19:00:00', 30, 0, 2, 1, 2, '2023-04-10 10:52:29', '2023-04-10 10:52:29');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (217, '2023-06-16', 5, '18:00:00', '20:00:00', '19:00:00', 30, 0, 2, 1, 2, '2023-04-10 10:52:29', '2023-04-10 10:52:29');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (218, '2023-06-19', 1, '18:00:00', '20:00:00', '19:00:00', 30, 0, 2, 1, 2, '2023-04-10 10:52:29', '2023-04-10 10:52:29');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (219, '2023-06-20', 2, '18:00:00', '20:00:00', '19:00:00', 30, 0, 2, 1, 2, '2023-04-10 10:52:29', '2023-04-10 10:52:29');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (220, '2023-06-21', 3, '18:00:00', '20:00:00', '19:00:00', 30, 0, 2, 1, 2, '2023-04-10 10:52:29', '2023-04-10 10:52:29');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (221, '2023-06-25', 7, '18:00:00', '20:00:00', '19:00:00', 30, 0, 2, 1, 2, '2023-04-10 10:52:29', '2023-04-10 10:52:29');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (222, '2023-06-26', 1, '18:00:00', '20:00:00', '19:00:00', 30, 0, 2, 1, 2, '2023-04-10 10:52:29', '2023-04-10 10:52:29');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (223, '2023-06-27', 2, '18:00:00', '20:00:00', '19:00:00', 30, 0, 2, 1, 2, '2023-04-10 10:52:29', '2023-04-10 10:52:29');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (224, '2023-06-28', 3, '18:00:00', '20:00:00', '19:00:00', 30, 0, 2, 1, 2, '2023-04-10 10:52:29', '2023-04-10 10:52:29');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (225, '2023-06-29', 4, '18:00:00', '20:00:00', '19:00:00', 30, 0, 2, 1, 2, '2023-04-10 10:52:29', '2023-04-10 10:52:29');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (226, '2023-06-30', 5, '18:00:00', '20:00:00', '19:00:00', 30, 0, 2, 1, 2, '2023-04-10 10:52:29', '2023-04-10 10:52:29');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (227, '2023-04-03', 1, '08:00:00', '13:00:00', '07:00:00', 30, 0, 1, 1, 2, '2023-04-10 11:02:14', '2023-04-10 11:02:14');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (228, '2023-04-04', 2, '08:00:00', '13:00:00', '07:00:00', 30, 0, 1, 1, 2, '2023-04-10 11:02:14', '2023-04-10 11:02:14');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (229, '2023-04-06', 4, '08:00:00', '13:00:00', '07:00:00', 30, 0, 1, 1, 2, '2023-04-10 11:02:14', '2023-04-10 11:02:14');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (230, '2023-04-07', 5, '08:00:00', '13:00:00', '07:00:00', 30, 0, 1, 1, 2, '2023-04-10 11:02:14', '2023-04-10 11:02:14');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (231, '2023-04-10', 1, '08:00:00', '13:00:00', '07:00:00', 30, 0, 1, 1, 2, '2023-04-10 11:02:14', '2023-04-10 11:02:14');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (232, '2023-04-11', 2, '08:00:00', '13:00:00', '07:00:00', 30, 0, 1, 1, 2, '2023-04-10 11:02:14', '2023-04-10 11:02:14');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (233, '2023-04-12', 3, '08:00:00', '13:00:00', '07:00:00', 30, 0, 1, 1, 2, '2023-04-10 11:02:14', '2023-04-10 11:02:14');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (234, '2023-04-13', 4, '08:00:00', '13:00:00', '07:00:00', 30, 0, 1, 1, 2, '2023-04-10 11:02:14', '2023-04-10 11:02:14');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (235, '2023-04-14', 5, '08:00:00', '13:00:00', '07:00:00', 30, 0, 1, 1, 2, '2023-04-10 11:02:14', '2023-04-10 11:02:14');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (236, '2023-04-17', 1, '08:00:00', '13:00:00', '07:00:00', 30, 0, 1, 1, 2, '2023-04-10 11:02:14', '2023-04-10 11:02:14');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (237, '2023-04-18', 2, '08:00:00', '13:00:00', '07:00:00', 30, 0, 1, 1, 2, '2023-04-10 11:02:14', '2023-04-10 11:02:14');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (238, '2023-04-19', 3, '08:00:00', '13:00:00', '07:00:00', 30, 0, 1, 1, 2, '2023-04-10 11:02:14', '2023-04-10 11:02:14');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (239, '2023-04-20', 4, '08:00:00', '13:00:00', '07:00:00', 30, 0, 1, 1, 2, '2023-04-10 11:02:14', '2023-04-10 11:02:14');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (240, '2023-04-21', 5, '08:00:00', '13:00:00', '07:00:00', 30, 0, 1, 1, 2, '2023-04-10 11:02:14', '2023-04-10 11:02:14');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (241, '2023-04-23', 7, '08:00:00', '13:00:00', '07:00:00', 30, 0, 1, 1, 2, '2023-04-10 11:02:14', '2023-04-10 11:02:14');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (242, '2023-04-24', 1, '08:00:00', '13:00:00', '07:00:00', 30, 0, 1, 1, 2, '2023-04-10 11:02:14', '2023-04-10 11:02:14');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (243, '2023-04-25', 2, '08:00:00', '13:00:00', '07:00:00', 30, 0, 1, 1, 2, '2023-04-10 11:02:14', '2023-04-10 11:02:14');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (244, '2023-04-26', 3, '08:00:00', '13:00:00', '07:00:00', 30, 0, 1, 1, 2, '2023-04-10 11:02:14', '2023-04-10 11:02:14');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (245, '2023-04-27', 4, '08:00:00', '13:00:00', '07:00:00', 30, 0, 1, 1, 2, '2023-04-10 11:02:14', '2023-04-10 11:02:14');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (246, '2023-04-28', 5, '08:00:00', '13:00:00', '07:00:00', 30, 0, 1, 1, 2, '2023-04-10 11:02:14', '2023-04-10 11:02:14');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (247, '2023-05-04', 4, '08:00:00', '13:00:00', '07:00:00', 30, 0, 1, 1, 2, '2023-04-10 11:02:14', '2023-04-10 11:02:14');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (248, '2023-05-05', 5, '08:00:00', '13:00:00', '07:00:00', 30, 0, 1, 1, 2, '2023-04-10 11:02:14', '2023-04-10 11:02:14');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (249, '2023-05-06', 6, '08:00:00', '13:00:00', '07:00:00', 30, 0, 1, 1, 2, '2023-04-10 11:02:14', '2023-04-10 11:02:14');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (250, '2023-05-08', 1, '08:00:00', '13:00:00', '07:00:00', 30, 0, 1, 1, 2, '2023-04-10 11:02:14', '2023-04-10 11:02:14');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (251, '2023-05-09', 2, '08:00:00', '13:00:00', '07:00:00', 30, 0, 1, 1, 2, '2023-04-10 11:02:14', '2023-04-10 11:02:14');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (252, '2023-05-10', 3, '08:00:00', '13:00:00', '07:00:00', 30, 0, 1, 1, 2, '2023-04-10 11:02:14', '2023-04-10 11:02:14');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (253, '2023-05-11', 4, '08:00:00', '13:00:00', '07:00:00', 30, 0, 1, 1, 2, '2023-04-10 11:02:14', '2023-04-10 11:02:14');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (254, '2023-05-12', 5, '08:00:00', '13:00:00', '07:00:00', 30, 0, 1, 1, 2, '2023-04-10 11:02:14', '2023-04-10 11:02:14');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (255, '2023-05-15', 1, '08:00:00', '13:00:00', '07:00:00', 30, 0, 1, 1, 2, '2023-04-10 11:02:14', '2023-04-10 11:02:14');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (256, '2023-05-16', 2, '08:00:00', '13:00:00', '07:00:00', 30, 0, 1, 1, 2, '2023-04-10 11:02:14', '2023-04-10 11:02:14');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (257, '2023-05-17', 3, '08:00:00', '13:00:00', '07:00:00', 30, 0, 1, 1, 2, '2023-04-10 11:02:14', '2023-04-10 11:02:14');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (258, '2023-05-18', 4, '08:00:00', '13:00:00', '07:00:00', 30, 0, 1, 1, 2, '2023-04-10 11:02:14', '2023-04-10 11:02:14');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (259, '2023-05-19', 5, '08:00:00', '13:00:00', '07:00:00', 30, 0, 1, 1, 2, '2023-04-10 11:02:14', '2023-04-10 11:02:14');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (260, '2023-05-22', 1, '08:00:00', '13:00:00', '07:00:00', 30, 0, 1, 1, 2, '2023-04-10 11:02:14', '2023-04-10 11:02:14');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (261, '2023-05-23', 2, '08:00:00', '13:00:00', '07:00:00', 30, 0, 1, 1, 2, '2023-04-10 11:02:14', '2023-04-10 11:02:14');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (262, '2023-05-24', 3, '08:00:00', '13:00:00', '07:00:00', 30, 0, 1, 1, 2, '2023-04-10 11:02:14', '2023-04-10 11:02:14');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (263, '2023-05-25', 4, '08:00:00', '13:00:00', '07:00:00', 30, 0, 1, 1, 2, '2023-04-10 11:02:14', '2023-04-10 11:02:14');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (264, '2023-05-26', 5, '08:00:00', '13:00:00', '07:00:00', 30, 0, 1, 1, 2, '2023-04-10 11:02:14', '2023-04-10 11:02:14');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (265, '2023-05-29', 1, '08:00:00', '13:00:00', '07:00:00', 30, 0, 1, 1, 2, '2023-04-10 11:02:14', '2023-04-10 11:02:14');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (266, '2023-05-30', 2, '08:00:00', '13:00:00', '07:00:00', 30, 0, 1, 1, 2, '2023-04-10 11:02:14', '2023-04-10 11:02:14');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (267, '2023-05-31', 3, '08:00:00', '13:00:00', '07:00:00', 30, -1, 1, 1, 2, '2023-04-10 11:02:14', '2023-05-30 14:42:45');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (268, '2023-05-01', 1, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 2, '2023-04-10 14:24:41', '2023-04-10 14:24:41');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (269, '2023-05-02', 2, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 1, '2023-04-10 14:24:41', '2023-04-10 15:06:11');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (270, '2023-05-03', 3, '08:00:00', '13:00:00', '07:00:00', 30, 0, 2, 1, 1, '2023-04-10 14:24:41', '2023-04-10 15:06:11');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (271, '2023-05-26', 5, '14:00:00', '17:00:00', '13:00:00', 20, 0, 1, 1, 2, '2023-05-27 11:20:53', '2023-05-27 11:20:53');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (272, '2023-05-29', 1, '14:00:00', '17:00:00', '13:00:00', 20, 0, 1, 1, 2, '2023-05-27 11:20:53', '2023-05-27 11:20:53');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (273, '2023-05-30', 2, '14:00:00', '17:00:00', '13:00:00', 20, 0, 1, 1, 2, '2023-05-27 11:20:53', '2023-05-30 11:15:16');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (274, '2023-05-31', 3, '14:00:00', '17:00:00', '13:00:00', 20, 0, 1, 1, 2, '2023-05-27 11:20:53', '2023-05-27 11:20:53');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (275, '2023-05-26', 5, '18:00:00', '20:00:00', '19:00:00', 30, 0, 1, 1, 2, '2023-05-27 11:22:41', '2023-05-27 11:22:41');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (276, '2023-05-29', 1, '18:00:00', '20:00:00', '19:00:00', 30, 0, 1, 1, 2, '2023-05-27 11:22:41', '2023-05-27 11:22:41');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (277, '2023-05-30', 2, '18:00:00', '20:00:00', '19:00:00', 30, 0, 1, 1, 2, '2023-05-27 11:22:41', '2023-05-27 11:22:41');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (278, '2023-05-31', 3, '18:00:00', '20:00:00', '19:00:00', 30, 0, 1, 1, 2, '2023-05-27 11:22:41', '2023-05-30 14:12:51');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (279, '2023-06-01', 4, '08:00:00', '13:00:00', '07:00:00', 30, 1, 1, 1, 2, '2023-05-30 14:54:56', '2023-05-30 14:55:12');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (280, '2023-06-02', 5, '08:00:00', '13:00:00', '07:00:00', 30, 1, 1, 1, 2, '2023-05-30 14:54:56', '2023-05-30 16:02:22');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (281, '2023-06-05', 1, '08:00:00', '13:00:00', '07:00:00', 30, 1, 1, 1, 2, '2023-05-30 14:54:56', '2023-05-30 16:04:43');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (282, '2023-06-06', 2, '08:00:00', '13:00:00', '07:00:00', 30, 1, 1, 1, 2, '2023-05-30 14:54:56', '2023-05-30 17:06:25');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (283, '2023-06-07', 3, '08:00:00', '13:00:00', '07:00:00', 30, 0, 1, 1, 2, '2023-05-30 14:54:56', '2023-05-30 17:21:02');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (284, '2023-06-08', 4, '08:00:00', '13:00:00', '07:00:00', 30, 0, 1, 1, 2, '2023-05-30 14:54:56', '2023-05-30 17:40:47');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (285, '2023-06-09', 5, '08:00:00', '13:00:00', '07:00:00', 30, 0, 1, 1, 2, '2023-05-30 14:54:56', '2023-05-30 14:54:56');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (286, '2023-06-12', 1, '08:00:00', '13:00:00', '07:00:00', 30, 0, 1, 1, 2, '2023-05-30 14:54:56', '2023-05-30 14:54:56');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (287, '2023-06-13', 2, '08:00:00', '13:00:00', '07:00:00', 30, 0, 1, 1, 2, '2023-05-30 14:54:56', '2023-05-30 14:54:56');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (288, '2023-06-14', 3, '08:00:00', '13:00:00', '07:00:00', 30, 1, 1, 1, 2, '2023-05-30 14:54:56', '2023-06-01 16:46:14');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (289, '2023-06-15', 4, '08:00:00', '13:00:00', '07:00:00', 30, 0, 1, 1, 2, '2023-05-30 14:54:56', '2023-06-01 16:48:38');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (290, '2023-06-16', 5, '08:00:00', '13:00:00', '07:00:00', 30, 1, 1, 1, 2, '2023-05-30 14:54:56', '2023-06-10 23:29:55');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (291, '2023-06-19', 1, '08:00:00', '13:00:00', '07:00:00', 30, 0, 1, 1, 2, '2023-05-30 14:54:56', '2023-06-10 23:00:53');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (292, '2023-06-20', 2, '08:00:00', '13:00:00', '07:00:00', 30, 0, 1, 1, 2, '2023-05-30 14:54:56', '2023-05-30 14:54:56');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (293, '2023-06-21', 3, '08:00:00', '13:00:00', '07:00:00', 30, 0, 1, 1, 2, '2023-05-30 14:54:56', '2023-05-30 14:54:56');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (294, '2023-06-25', 7, '08:00:00', '13:00:00', '07:00:00', 30, 0, 1, 1, 2, '2023-05-30 14:54:56', '2023-05-30 14:54:56');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (295, '2023-06-26', 1, '08:00:00', '13:00:00', '07:00:00', 30, 0, 1, 1, 2, '2023-05-30 14:54:56', '2023-05-30 14:54:56');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (296, '2023-06-27', 2, '08:00:00', '13:00:00', '07:00:00', 30, 1, 1, 1, 2, '2023-05-30 14:54:56', '2023-06-10 23:40:11');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (297, '2023-06-28', 3, '08:00:00', '13:00:00', '07:00:00', 30, 1, 1, 1, 2, '2023-05-30 14:54:56', '2023-06-10 23:33:39');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (298, '2023-06-29', 4, '08:00:00', '13:00:00', '07:00:00', 30, 1, 1, 1, 2, '2023-05-30 14:54:56', '2023-06-10 23:32:33');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (299, '2023-06-30', 5, '08:00:00', '13:00:00', '07:00:00', 30, 0, 1, 1, 2, '2023-05-30 14:54:56', '2023-06-01 16:53:06');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (300, '2023-06-01', 4, '05:00:00', '18:00:00', '17:00:00', 30, 0, 1, 1, 2, '2023-06-10 12:22:44', '2023-06-10 12:22:44');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (301, '2023-06-02', 5, '05:00:00', '18:00:00', '17:00:00', 30, 0, 1, 1, 2, '2023-06-10 12:22:44', '2023-06-10 12:22:44');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (302, '2023-06-03', 6, '05:00:00', '18:00:00', '17:00:00', 30, 0, 1, 1, 2, '2023-06-10 12:22:44', '2023-06-10 12:22:44');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (303, '2023-06-04', 7, '05:00:00', '18:00:00', '17:00:00', 30, 0, 1, 1, 2, '2023-06-10 12:22:44', '2023-06-10 12:22:44');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (304, '2023-06-05', 1, '05:00:00', '18:00:00', '17:00:00', 30, 0, 1, 1, 2, '2023-06-10 12:22:44', '2023-06-10 12:22:44');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (305, '2023-06-06', 2, '05:00:00', '18:00:00', '17:00:00', 30, 0, 1, 1, 2, '2023-06-10 12:22:44', '2023-06-10 12:22:44');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (306, '2023-06-07', 3, '05:00:00', '18:00:00', '17:00:00', 30, 0, 1, 1, 2, '2023-06-10 12:22:44', '2023-06-10 12:22:44');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (307, '2023-06-08', 4, '05:00:00', '18:00:00', '17:00:00', 30, 0, 1, 1, 2, '2023-06-10 12:22:44', '2023-06-10 12:22:44');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (308, '2023-06-09', 5, '05:00:00', '18:00:00', '17:00:00', 30, 0, 1, 1, 2, '2023-06-10 12:22:44', '2023-06-10 12:22:44');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (309, '2023-06-10', 6, '05:00:00', '18:00:00', '17:00:00', 30, 0, 1, 1, 2, '2023-06-10 12:22:44', '2023-06-10 12:22:44');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (310, '2023-06-11', 7, '05:00:00', '18:00:00', '17:00:00', 30, 0, 1, 1, 2, '2023-06-10 12:22:44', '2023-06-10 12:22:44');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (311, '2023-06-12', 1, '05:00:00', '18:00:00', '17:00:00', 30, 0, 1, 1, 2, '2023-06-10 12:22:44', '2023-06-10 12:22:44');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (312, '2023-06-13', 2, '05:00:00', '18:00:00', '17:00:00', 30, 0, 1, 1, 2, '2023-06-10 12:22:44', '2023-06-10 12:22:44');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (313, '2023-06-14', 3, '05:00:00', '18:00:00', '17:00:00', 30, 0, 1, 1, 2, '2023-06-10 12:22:44', '2023-06-10 12:22:44');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (314, '2023-06-15', 4, '05:00:00', '18:00:00', '17:00:00', 30, 0, 1, 1, 2, '2023-06-10 12:22:44', '2023-06-10 12:22:44');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (315, '2023-06-16', 5, '05:00:00', '18:00:00', '17:00:00', 30, 0, 1, 1, 2, '2023-06-10 12:22:44', '2023-06-10 12:22:44');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (316, '2023-06-17', 6, '05:00:00', '18:00:00', '17:00:00', 30, 0, 1, 1, 2, '2023-06-10 12:22:44', '2023-06-10 12:22:44');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (317, '2023-06-18', 7, '05:00:00', '18:00:00', '17:00:00', 30, 0, 1, 1, 2, '2023-06-10 12:22:44', '2023-06-10 12:22:44');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (318, '2023-06-19', 1, '05:00:00', '18:00:00', '17:00:00', 30, 0, 1, 1, 2, '2023-06-10 12:22:44', '2023-06-10 23:18:12');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (319, '2023-06-20', 2, '05:00:00', '18:00:00', '17:00:00', 30, 0, 1, 1, 2, '2023-06-10 12:22:44', '2023-06-10 12:22:44');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (320, '2023-06-21', 3, '05:00:00', '18:00:00', '17:00:00', 30, 0, 1, 1, 2, '2023-06-10 12:22:44', '2023-06-10 12:22:44');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (321, '2023-06-24', 6, '05:00:00', '18:00:00', '17:00:00', 30, 0, 1, 1, 2, '2023-06-10 12:22:44', '2023-06-10 12:22:44');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (322, '2023-06-25', 7, '05:00:00', '18:00:00', '17:00:00', 30, 0, 1, 1, 2, '2023-06-10 12:22:44', '2023-06-10 12:22:44');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (323, '2023-06-26', 1, '05:00:00', '18:00:00', '17:00:00', 30, 0, 1, 1, 2, '2023-06-10 12:22:44', '2023-06-10 12:22:44');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (324, '2023-06-27', 2, '05:00:00', '18:00:00', '17:00:00', 30, -1, 1, 1, 2, '2023-06-10 12:22:44', '2023-06-10 23:03:27');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (325, '2023-06-28', 3, '05:00:00', '18:00:00', '17:00:00', 30, 0, 1, 1, 2, '2023-06-10 12:22:44', '2023-06-10 12:22:44');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (326, '2023-06-29', 4, '05:00:00', '18:00:00', '17:00:00', 30, 0, 1, 1, 2, '2023-06-10 12:22:44', '2023-06-10 12:22:44');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (327, '2023-06-30', 5, '05:00:00', '18:00:00', '17:00:00', 49, 0, 1, 1, 2, '2023-06-10 12:22:44', '2023-06-10 14:35:14');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (328, '2023-07-01', 6, '05:00:00', '18:00:00', '17:00:00', 30, 0, 1, 1, 2, '2023-06-10 23:48:28', '2023-06-10 23:48:28');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (329, '2023-07-02', 7, '05:00:00', '18:00:00', '17:00:00', 30, 0, 1, 1, 2, '2023-06-10 23:48:28', '2023-06-10 23:48:28');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (330, '2023-07-03', 1, '05:00:00', '18:00:00', '17:00:00', 30, 0, 1, 1, 2, '2023-06-10 23:48:28', '2023-06-10 23:48:28');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (331, '2023-07-04', 2, '05:00:00', '18:00:00', '17:00:00', 30, 0, 1, 1, 2, '2023-06-10 23:48:28', '2023-06-10 23:48:28');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (332, '2023-07-05', 3, '05:00:00', '18:00:00', '17:00:00', 30, 0, 1, 1, 2, '2023-06-10 23:48:28', '2023-06-10 23:48:28');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (333, '2023-07-06', 4, '05:00:00', '18:00:00', '17:00:00', 30, 0, 1, 1, 2, '2023-06-10 23:48:28', '2023-06-10 23:48:28');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (334, '2023-07-07', 5, '05:00:00', '18:00:00', '17:00:00', 30, 0, 1, 1, 2, '2023-06-10 23:48:28', '2023-06-10 23:48:28');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (335, '2023-07-08', 6, '05:00:00', '18:00:00', '17:00:00', 30, 0, 1, 1, 2, '2023-06-10 23:48:28', '2023-06-10 23:48:28');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (336, '2023-07-09', 7, '05:00:00', '18:00:00', '17:00:00', 30, 0, 1, 1, 2, '2023-06-10 23:48:28', '2023-06-10 23:48:28');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (337, '2023-07-10', 1, '05:00:00', '18:00:00', '17:00:00', 30, 0, 1, 1, 2, '2023-06-10 23:48:28', '2023-06-10 23:48:28');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (338, '2023-07-11', 2, '05:00:00', '18:00:00', '17:00:00', 30, 0, 1, 1, 2, '2023-06-10 23:48:28', '2023-06-10 23:48:28');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (339, '2023-07-12', 3, '05:00:00', '18:00:00', '17:00:00', 30, 0, 1, 1, 2, '2023-06-10 23:48:28', '2023-06-10 23:48:28');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (340, '2023-07-13', 4, '05:00:00', '18:00:00', '17:00:00', 30, 0, 1, 1, 2, '2023-06-10 23:48:28', '2023-06-10 23:48:28');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (341, '2023-07-14', 5, '05:00:00', '18:00:00', '17:00:00', 30, 0, 1, 1, 2, '2023-06-10 23:48:28', '2023-06-10 23:48:28');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (342, '2023-07-15', 6, '05:00:00', '18:00:00', '17:00:00', 30, 0, 1, 1, 2, '2023-06-10 23:48:28', '2023-06-10 23:48:28');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (343, '2023-07-16', 7, '05:00:00', '18:00:00', '17:00:00', 30, 0, 1, 1, 2, '2023-06-10 23:48:28', '2023-06-10 23:48:28');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (344, '2023-07-17', 1, '05:00:00', '18:00:00', '17:00:00', 30, 0, 1, 1, 2, '2023-06-10 23:48:28', '2023-06-10 23:48:28');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (345, '2023-07-18', 2, '05:00:00', '18:00:00', '17:00:00', 30, 0, 1, 1, 2, '2023-06-10 23:48:28', '2023-06-10 23:48:28');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (346, '2023-07-19', 3, '05:00:00', '18:00:00', '17:00:00', 30, 0, 1, 1, 2, '2023-06-10 23:48:28', '2023-06-10 23:48:28');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (347, '2023-07-20', 4, '05:00:00', '18:00:00', '17:00:00', 30, 0, 1, 1, 2, '2023-06-10 23:48:28', '2023-06-10 23:48:28');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (348, '2023-07-21', 5, '05:00:00', '18:00:00', '17:00:00', 30, 0, 1, 1, 2, '2023-06-10 23:48:28', '2023-06-10 23:48:28');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (349, '2023-07-22', 6, '05:00:00', '18:00:00', '17:00:00', 30, 0, 1, 1, 2, '2023-06-10 23:48:28', '2023-06-10 23:48:28');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (350, '2023-07-23', 7, '05:00:00', '18:00:00', '17:00:00', 30, 0, 1, 1, 2, '2023-06-10 23:48:28', '2023-06-10 23:48:28');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (351, '2023-07-24', 1, '05:00:00', '18:00:00', '17:00:00', 30, 0, 1, 1, 2, '2023-06-10 23:48:28', '2023-06-10 23:48:28');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (352, '2023-07-25', 2, '05:00:00', '18:00:00', '17:00:00', 30, 0, 1, 1, 2, '2023-06-10 23:48:28', '2023-06-10 23:48:28');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (353, '2023-07-26', 3, '05:00:00', '18:00:00', '17:00:00', 30, 0, 1, 1, 2, '2023-06-10 23:48:28', '2023-06-10 23:48:28');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (354, '2023-07-27', 4, '05:00:00', '18:00:00', '17:00:00', 30, 0, 1, 1, 2, '2023-06-10 23:48:28', '2023-06-10 23:48:28');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (355, '2023-07-28', 5, '05:00:00', '18:00:00', '17:00:00', 30, 0, 1, 1, 2, '2023-06-10 23:48:28', '2023-06-10 23:48:28');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (356, '2023-07-29', 6, '05:00:00', '18:00:00', '17:00:00', 30, 0, 1, 1, 2, '2023-06-10 23:48:28', '2023-06-10 23:48:28');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (357, '2023-07-30', 7, '05:00:00', '18:00:00', '17:00:00', 30, 0, 1, 1, 2, '2023-06-10 23:48:28', '2023-06-10 23:48:28');
|
|
INSERT INTO lkpe.appointments (id, date, week, start_time, end_time, stop_time, max_count, used_count, hospital, status, del, created_at, updated_at) VALUES (358, '2023-07-31', 1, '05:00:00', '18:00:00', '17:00:00', 30, 1, 1, 1, 2, '2023-06-10 23:48:28', '2023-06-10 23:48:47');
|