diff --git a/epmet-module/resi-group/resi-group-client/src/main/java/com/epmet/resi/group/dto/topic/result/GetPastTopicListV2ResultDTO.java b/epmet-module/resi-group/resi-group-client/src/main/java/com/epmet/resi/group/dto/topic/result/GetPastTopicListV2ResultDTO.java index 3885933a78..842e720615 100644 --- a/epmet-module/resi-group/resi-group-client/src/main/java/com/epmet/resi/group/dto/topic/result/GetPastTopicListV2ResultDTO.java +++ b/epmet-module/resi-group/resi-group-client/src/main/java/com/epmet/resi/group/dto/topic/result/GetPastTopicListV2ResultDTO.java @@ -77,6 +77,11 @@ public class GetPastTopicListV2ResultDTO implements Serializable { */ private List badgeList = new ArrayList<>(); + /** + * 通知是否过期(true:是 false:否) + */ + private Boolean isExpirat; + @JsonIgnore private String userId; } diff --git a/epmet-module/resi-group/resi-group-client/src/main/java/com/epmet/resi/group/dto/topic/result/LatestTenResultDTO.java b/epmet-module/resi-group/resi-group-client/src/main/java/com/epmet/resi/group/dto/topic/result/LatestTenResultDTO.java index e5346ab703..fd5637ba98 100644 --- a/epmet-module/resi-group/resi-group-client/src/main/java/com/epmet/resi/group/dto/topic/result/LatestTenResultDTO.java +++ b/epmet-module/resi-group/resi-group-client/src/main/java/com/epmet/resi/group/dto/topic/result/LatestTenResultDTO.java @@ -85,6 +85,11 @@ public class LatestTenResultDTO implements Serializable { */ private Integer unReadCount; + /** + * 通知是否过期(true:是 false:否) + */ + private Boolean isExpirat; + public LatestTenResultDTO() { this.id = ""; this.userId = ""; @@ -100,5 +105,6 @@ public class LatestTenResultDTO implements Serializable { this.contentType = ""; this.readOrUnRead = ""; this.unReadCount = NumConstant.ZERO; + this.isExpirat = false; } } diff --git a/epmet-module/resi-group/resi-group-server/src/main/resources/mapper/group/ResiGroupDao.xml b/epmet-module/resi-group/resi-group-server/src/main/resources/mapper/group/ResiGroupDao.xml index d8859c6133..ca54aac3a4 100644 --- a/epmet-module/resi-group/resi-group-server/src/main/resources/mapper/group/ResiGroupDao.xml +++ b/epmet-module/resi-group/resi-group-server/src/main/resources/mapper/group/ResiGroupDao.xml @@ -561,7 +561,8 @@ t.`STATUS` AS status, IFNULL(t.ISSUE_ID,'') AS issueId, 'topic' AS contentType, - IFNULL(ta.ATTACHMENT_URL,'') AS firstPhoto + IFNULL(ta.ATTACHMENT_URL,'') AS firstPhoto, + false AS isExpirat FROM resi_topic t LEFT JOIN resi_topic_attachment ta ON ta.TOPIC_ID = t.ID AND ta.ATTACHMENT_TYPE = 'image' AND ta.SORT = 0 WHERE t.DEL_FLAG = '0' @@ -578,7 +579,8 @@ ai.`STATUS` AS status, '' AS issueId, 'act' AS contentType, - IFNULL(ac2.CONTENT,'') AS firstPhoto + IFNULL(ac2.CONTENT,'') AS firstPhoto, + false AS isExpirat FROM group_act_info ai LEFT JOIN group_act_content ac ON ac.GROUP_ACT_ID = ai.ID AND ac.CONTENT_TYPE = 'text' LEFT JOIN group_act_content ac2 ON ac2.GROUP_ACT_ID = ai.ID AND ac2.CONTENT_TYPE = 'img' AND ac2.SORT = 1 @@ -595,7 +597,8 @@ '' AS status, '' AS issueId, 'notice' AS contentType, - IFNULL(na.ATTACHMENT_URL,'') AS firstPhoto + IFNULL(na.ATTACHMENT_URL,'') AS firstPhoto, + (CASE WHEN UNIX_TIMESTAMP(n.EXPIRATION_TIME) UNIX_TIMESTAMP(NOW()) THEN TRUE ELSE FALSE END) AS isExpirat FROM notice n LEFT JOIN notice_attachment na ON na.NOTICE_ID = n.ID AND na.DEL_FLAG = '0' AND na.ATTACHMENT_TYPE = 'image' AND na.SORT = 0 WHERE n.DEL_FLAG = '0' @@ -777,7 +780,8 @@ t.TOPIC_CONTENT AS content, t.`STATUS` AS status, IFNULL(t.ISSUE_ID,'') AS issueId, - 'topic' AS contentType + 'topic' AS contentType, + false AS isExpirat FROM resi_topic t WHERE t.DEL_FLAG = '0' AND t.`STATUS` != 'hidden' @@ -795,7 +799,8 @@ IFNULL(ac.CONTENT,'') AS content, ai.`STATUS` AS status, '' AS issueId, - 'act' AS contentType + 'act' AS contentType, + false AS isExpirat FROM group_act_info ai LEFT JOIN group_act_content ac ON ac.GROUP_ACT_ID = ai.ID AND ac.CONTENT_TYPE = 'text' WHERE ai.DEL_FLAG = '0' @@ -813,7 +818,8 @@ n.CONTENT AS content, '' AS status, '' AS issueId, - 'notice' AS contentType + 'notice' AS contentType, + (CASE WHEN UNIX_TIMESTAMP(n.EXPIRATION_TIME) UNIX_TIMESTAMP(NOW()) THEN TRUE ELSE FALSE END) AS isExpirat FROM notice n WHERE n.DEL_FLAG = '0' AND (