|
|
|
@ -82,9 +82,6 @@ public class AppEnfTodoItemController extends BaseController { |
|
|
|
// 2. 执法评价未读个数(暂时默认为0)
|
|
|
|
statistics.setZfpjCount(0L); |
|
|
|
|
|
|
|
// 3. 执法预告未读个数(暂时默认为0)
|
|
|
|
statistics.setZfygCount(0L); |
|
|
|
|
|
|
|
//4. 统计执法预告
|
|
|
|
Long zfygCount = cpNoticeMessageService.countUnreadNoticeMessageForCurrentUser(); |
|
|
|
statistics.setZfygCount(zfygCount != null ? zfygCount : 0L); |
|
|
|
@ -99,7 +96,6 @@ public class AppEnfTodoItemController extends BaseController { |
|
|
|
Long totalCount = statistics.getPffwCount() |
|
|
|
+ statistics.getZfpjCount() |
|
|
|
+ statistics.getZfygCount() |
|
|
|
+ statistics.getZfygCount() |
|
|
|
+ statistics.getZfrwCount() |
|
|
|
+ statistics.getZfyqCount(); |
|
|
|
statistics.setTotalCount(totalCount); |
|
|
|
|