卢健 5 years ago
parent ea4a3c13a7
commit bae6447109

@ -0,0 +1,12 @@
create table city_daily_datas
(
Id INT primary key auto_increment not null comment '编号',
city VARCHAR(4000) comment '城市名称',
confirmedRelative INT comment '新增确诊',
curConfirm INT comment '现有确诊',
confirmed INT comment '累计确诊',
died INT comment '累计死亡',
crued INT comment '累计治愈出院',
pub_date VARCHAR(4000) comment '发布日期',
province VARCHAR(4000) comment '所属省份'
) comment '各国内城市每日疫情数据';

@ -0,0 +1,16 @@
create table province_daily_datas
(
Id INT primary key auto_increment not null comment '编号',
curConfirm INT comment '现有确诊',
curConfirmRelative INT comment '较昨日现有确诊新增',
confirmed INT comment '累计确诊',
confirmedRelative INT comment '新增确诊',
died INT comment '累计死亡',
diedRelative INT comment '较昨日累计死亡新增',
crued INT comment '累计治愈出院',
curedRelative INT comment '较昨日累计治愈新增',
area VARCHAR(4000) comment '省份名称',
asymptomatic INT comment '无症状感染者数',
asymptomaticRelative INT comment '较昨日无症状感染新增',
pub_date VARCHAR(4000) comment '发布日期'
) comment '各省份每日疫情数据';
Loading…
Cancel
Save