1、app消息数据查询重构

2、app消息已读未读方法重构
3、其余辅助功能添加
This commit is contained in:
xy
2026-04-01 20:28:04 +08:00
parent 33da822317
commit dbe09d70f4
59 changed files with 1529 additions and 711 deletions

View File

@@ -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);