|
@ -224,7 +224,7 @@ public class StatsGroupServiceImpl implements StatsGroupService { |
|
|
*/ |
|
|
*/ |
|
|
public DimIdGenerator.DimIdBean getDimIdBean(){ |
|
|
public DimIdGenerator.DimIdBean getDimIdBean(){ |
|
|
ZoneId zoneId = ZoneId.systemDefault(); |
|
|
ZoneId zoneId = ZoneId.systemDefault(); |
|
|
LocalDate localDate = LocalDate.now(); |
|
|
LocalDate localDate = LocalDate.now().minusDays(NumConstant.ONE); |
|
|
ZonedDateTime zdt = localDate.atStartOfDay(zoneId); |
|
|
ZonedDateTime zdt = localDate.atStartOfDay(zoneId); |
|
|
Date date = Date.from(zdt.toInstant()); |
|
|
Date date = Date.from(zdt.toInstant()); |
|
|
return DimIdGenerator.getDimIdBean(date); |
|
|
return DimIdGenerator.getDimIdBean(date); |
|
|