jace.tang
2022-06-14 2c79e797a723a59c2afc4b05069618ae48df587d
1
2
3
4
5
6
create table DownTime(
    ID INT NOT NULL IDENTITY(1,1) Primary key,
    BeginTime DATETIME NULL,
    EndTime DATETIME NULL,
    Type INT NULL
)