1、app消息数据查询重构
2、app消息已读未读方法重构 3、其余辅助功能添加
This commit is contained in:
@@ -87,9 +87,9 @@ public class CsAppReportServiceImpl extends ServiceImpl<CsAppReportMapper, CsApp
|
||||
|
||||
@Override
|
||||
public List<ReportHarmonicVO> getReportList(LineParamDTO param) {
|
||||
String startTime = PublicDataUtils.calculateMonthStart(param.getTime());
|
||||
String endTime = PublicDataUtils.calculateMonthEnd(param.getTime());
|
||||
|
||||
String[] timeRange = PublicDataUtils.calculateTimeRange(param.getTime());
|
||||
String startTime = timeRange[0];
|
||||
String endTime = timeRange[1];
|
||||
LocalDate startLocalDate = LocalDate.parse(startTime, DateTimeFormatter.ISO_LOCAL_DATE);
|
||||
LocalDate endLocalDate = LocalDate.parse(endTime, DateTimeFormatter.ISO_LOCAL_DATE);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user