bug修复 #1

Merged
wsy182 merged 22 commits from dev into master 2024-05-11 17:06:50 +08:00
Showing only changes of commit bbb7bedc94 - Show all commits

View File

@@ -45,9 +45,10 @@ CREATE TABLE device_info (
sn VARCHAR(255),
device_model VARCHAR(255),
last_online_time BIGINT,
status INT
status INT,
remark VARCHAR(255)
);
INSERT INTO device_info (is_monitored, time_out_period, device_brand, android_version, sn, device_model, last_online_time, status) VALUES
(1, 600, 'google', 'Android 10', UNIX_TIMESTAMP(), 1),
INSERT INTO device_info (is_monitored, time_out_period, device_brand, android_version, sn, device_model, last_online_time, status,remark) VALUES
(1, 1800, 'google', 'Android 10',,'Pixel 3', UNIX_TIMESTAMP(), 1,'转发设备'),