|
@@ -255,7 +255,7 @@ public class EsTOrderService extends EsBaseService<TOrder, TOrderParam> {
|
|
|
|
|
|
if (ChartType.day.toString().equals(param.getChartType())) {
|
|
|
interval = DateHistogramInterval.HOUR;
|
|
|
- format = "HH点";
|
|
|
+ format = "HH:00";
|
|
|
msg = "日统计";
|
|
|
}
|
|
|
if (ChartType.week.toString().equals(param.getChartType())) {
|
|
@@ -265,7 +265,7 @@ public class EsTOrderService extends EsBaseService<TOrder, TOrderParam> {
|
|
|
}
|
|
|
if (ChartType.month.toString().equals(param.getChartType())) {
|
|
|
interval = DateHistogramInterval.DAY;
|
|
|
- format = "MM月dd";
|
|
|
+ format = "MM-dd";
|
|
|
msg = "月统计";
|
|
|
}
|
|
|
if (ChartType.year.toString().equals(param.getChartType())) {
|