From e294ea312fe1994c3ddfe26595ee414e6612eb0c Mon Sep 17 00:00:00 2001 From: jinpengyong <jpy123456> Date: Fri, 04 Dec 2020 11:37:36 +0800 Subject: [PATCH] 大屏report_avg_datas接口24点无数据处理 --- src/main/java/com/moral/entity/WebCity.java | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/moral/entity/WebCity.java b/src/main/java/com/moral/entity/WebCity.java index 84c4793..9bc6114 100644 --- a/src/main/java/com/moral/entity/WebCity.java +++ b/src/main/java/com/moral/entity/WebCity.java @@ -15,4 +15,11 @@ private Integer provinceCode; private List<Area> areas; + + public WebCity(Integer cityCode, String cityName, Integer provinceCode, List<Area> areas) { + this.cityCode = cityCode; + this.cityName = cityName; + this.provinceCode = provinceCode; + this.areas = areas; + } } -- Gitblit v1.8.0