浏览代码

Merge branch 'develop' of http://git.ycjcjy.com/fuxingfan/smartCommunity into develop

傅行帆 6 年前
父节点
当前提交
101dafa736

+ 1
- 0
CODE/smart-community/app-api/src/main/java/com/community/huiju/service/impl/TicketServiceImpl.java 查看文件

@@ -142,6 +142,7 @@ public class TicketServiceImpl implements ITicketService {
142 142
             tpTicketVO.setRepairName(repairName);
143 143
             tpTicketVO.setStatus(recordList.get(0).getStatus());
144 144
             tpTicketVO.setTicketStatusName(recordList.get(0).getTicketStatusName());
145
+            tpTicketVO.setTicketRecordDate(recordList.get(0).getCreateDate());
145 146
             if (null != comment) {
146 147
                 tpTicketVO.setCommentContent(comment.getContent());
147 148
                 tpTicketVO.setCommentCreateDate(comment.getCreateDate());

+ 3
- 0
CODE/smart-community/app-api/src/main/java/com/community/huiju/vo/TpTicketVO.java 查看文件

@@ -58,6 +58,9 @@ public class TpTicketVO {
58 58
     /** 流程状态名称 **/
59 59
     private String ticketStatusName;
60 60
 
61
+    /** 流程状态时间 **/
62
+    private Date ticketRecordDate;
63
+
61 64
     /** 最新进展 **/
62 65
     private String commentContent;
63 66