浏览代码

fix(mind): add resolvedAt field to EmotionAlertVO

Xiaogang Liao 2 月之前
父节点
当前提交
e29f23c2d1
共有 1 个文件被更改,包括 1 次插入 和 0 次删除
  1. 1 0
      cfc-backend/src/main/java/com/etotem/cfc/dto/EmotionAlertVO.java

+ 1 - 0
cfc-backend/src/main/java/com/etotem/cfc/dto/EmotionAlertVO.java

@@ -14,5 +14,6 @@ public class EmotionAlertVO implements Serializable {
     private String title;
     private String message;
     private Boolean resolved;
+    private Date resolvedAt;
     private Date createdAt;
 }