From 267c20d552dbce24bce0a0d59a106f49f879ab62 Mon Sep 17 00:00:00 2001 From: jinpengyong <jpy123456> Date: Wed, 03 Nov 2021 15:33:27 +0800 Subject: [PATCH] city_aqi,city_aqi_daily 6参转大写 --- screen-common/src/main/java/com/moral/constant/Constants.java | 20 +++++++++++++++----- 1 files changed, 15 insertions(+), 5 deletions(-) diff --git a/screen-common/src/main/java/com/moral/constant/Constants.java b/screen-common/src/main/java/com/moral/constant/Constants.java index 22eb8b8..683d5b2 100644 --- a/screen-common/src/main/java/com/moral/constant/Constants.java +++ b/screen-common/src/main/java/com/moral/constant/Constants.java @@ -222,27 +222,37 @@ /* * ������ * */ - public static final String HOURYLYREPORT = "0"; + public static final String HOURLY_REPORT = "0"; /* * ������ * */ - public static final String DAILYREPORT = "1"; + public static final String DAILY_REPORT = "1"; /* * ������ * */ - public static final String WEEKLYREPORT = "2"; + public static final String WEEKLY_REPORT = "2"; /* * ������ * */ - public static final String MONTHLYREPORT = "3"; + public static final String MONTHLY_REPORT = "3"; /* * ��������������������� * */ public static final String NORMAL_FLAG = "N"; - + public static final String EXCELLENT = "���"; + + public static final String GOOD = "���"; + + public static final String MILD = "������������"; + + public static final String MIDDLE = "������������"; + + public static final String SERIOUS = "������������"; + + public static final String SERVER = "������������"; } -- Gitblit v1.8.0