diff --git a/src/main/java/com/gsafety/gemp/wuhanncov/controller/d420115/D420115DataController.java b/src/main/java/com/gsafety/gemp/wuhanncov/controller/d420115/D420115DataController.java index b86fa7a63d469de1649eeae3a04322dae5f08130..0fff67a8c18bf96676ef21f4fdb367c4ab46e1ae 100644 --- a/src/main/java/com/gsafety/gemp/wuhanncov/controller/d420115/D420115DataController.java +++ b/src/main/java/com/gsafety/gemp/wuhanncov/controller/d420115/D420115DataController.java @@ -166,16 +166,19 @@ public class D420115DataController { @ApiParam(value = "单个区域行政区划编码", example = "420115") @RequestParam("area_id") String areaId) { List list = new ArrayList<>(); - list.add(new PatientAreaD420115Add("江夏区", 10, 10)); - list.add(new PatientAreaD420115Add("纸坊街道办事处", 9, 1)); - list.add(new PatientAreaD420115Add("五里界街道办事处", 8, 1)); - list.add(new PatientAreaD420115Add("郑店街道办事处", 7, 1)); - list.add(new PatientAreaD420115Add("乌龙泉街道办事处", 6, 1)); - list.add(new PatientAreaD420115Add("金口街道办事处", 5, 1)); - list.add(new PatientAreaD420115Add("安山街道办事处", 4, 1)); - list.add(new PatientAreaD420115Add("法泗街道办事处", 3, 1)); - list.add(new PatientAreaD420115Add("山坡街道办事处", 2, 1)); - list.add(new PatientAreaD420115Add("舒安街道办事处", 1, 1)); + list.add(new PatientAreaD420115Add("江夏区", 19, 105)); + list.add(new PatientAreaD420115Add("纸坊街", 13, 56)); + list.add(new PatientAreaD420115Add("庙山产业园", 3, 5)); + list.add(new PatientAreaD420115Add("藏龙岛产业园", 2, 6)); + list.add(new PatientAreaD420115Add("金口街", 1, 9)); + list.add(new PatientAreaD420115Add("大桥产业园", 0, 9)); + list.add(new PatientAreaD420115Add("郑店街", 0, 5)); + list.add(new PatientAreaD420115Add("山坡街", 0, 4)); + list.add(new PatientAreaD420115Add("五里界街", 0, 4)); + list.add(new PatientAreaD420115Add("湖泗街", 0, 3)); + list.add(new PatientAreaD420115Add("法泗街", 0, 2)); + list.add(new PatientAreaD420115Add("安山街", 0, 2)); + list.add(new PatientAreaD420115Add("乌龙泉街", 0, 1)); return list; } @@ -198,15 +201,20 @@ public class D420115DataController { List list = new ArrayList<>(); list.add(new PatientAreaD420115All("江夏区", 10, 10)); - list.add(new PatientAreaD420115All("纸坊街道办事处", 9, 1)); - list.add(new PatientAreaD420115All("五里界街道办事处", 8, 1)); - list.add(new PatientAreaD420115All("郑店街道办事处", 7, 1)); - list.add(new PatientAreaD420115All("乌龙泉街道办事处", 6, 1)); - list.add(new PatientAreaD420115All("金口街道办事处", 5, 1)); - list.add(new PatientAreaD420115All("安山街道办事处", 4, 1)); - list.add(new PatientAreaD420115All("法泗街道办事处", 3, 1)); - list.add(new PatientAreaD420115All("山坡街道办事处", 2, 1)); - list.add(new PatientAreaD420115All("舒安街道办事处", 1, 1)); + list.add(new PatientAreaD420115All("纸坊街", 60, 273)); + list.add(new PatientAreaD420115All("藏龙岛产业园", 10, 12)); + list.add(new PatientAreaD420115All("大桥产业园", 9, 49)); + list.add(new PatientAreaD420115All("庙山产业园", 6, 28)); + list.add(new PatientAreaD420115All("金口街", 2, 32)); + list.add(new PatientAreaD420115All("乌龙泉街", 2, 19)); + list.add(new PatientAreaD420115All("山坡街", 1, 13)); + list.add(new PatientAreaD420115All("郑店街", 1, 20)); + list.add(new PatientAreaD420115All("湖泗街", 1, 5)); + list.add(new PatientAreaD420115All("法泗街", 1, 5)); + list.add(new PatientAreaD420115All("舒安街", 1, 5)); + list.add(new PatientAreaD420115All("金港产业园", 1, 0)); + list.add(new PatientAreaD420115All("五里界街", 0, 10)); + list.add(new PatientAreaD420115All("安山街", 0, 6)); return list; } @@ -226,6 +234,15 @@ public class D420115DataController { PatientRuntimeD420115Datav v = new PatientRuntimeD420115Datav(); v.setAreaName("江夏区"); v.setStasDate("1月31日0时-24时"); + v.setConfirmCase(95); + v.setProbableCase(477); + v.setSevereCase(98); + v.setDangerCase(11); + v.setDeadCase(2); + v.setCureCase(5); + v.setContact(490); + v.setContact(358); + v.setRelieve(132); return v; } @@ -334,11 +351,11 @@ public class D420115DataController { @AllArgsConstructor @NoArgsConstructor class PatientRuntimeD420115Datav { - + @JsonProperty("stasDate") @ApiModelProperty(value = "截止日期") private String stasDate; - + @JsonProperty("name") @ApiModelProperty(value = "地区") private String areaName; @@ -390,13 +407,13 @@ public class D420115DataController { @JsonProperty("contact") @ApiModelProperty(value = "密切接触者") private Integer contact = 0; - + @JsonProperty("observe") @ApiModelProperty(value = "观察中") - private Integer observe = 0; - + private Integer observe = 0; + @JsonProperty("relieve") @ApiModelProperty(value = "已解除") - private Integer relieve = 0; + private Integer relieve = 0; } }