weiximei 6 anni fa
parent
commit
3b84b7c81e

+ 1
- 0
CODE/smart-community/app-api/src/main/java/com/community/huiju/service/impl/TicketServiceImpl.java Vedi File

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

+ 3
- 0
CODE/smart-community/app-api/src/main/java/com/community/huiju/vo/TpTicketVO.java Vedi File

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

+ 1
- 0
CODE/smart-community/app-api/src/main/resources/mapper/TpTicketRecordMapper.xml Vedi File

@@ -122,6 +122,7 @@
122 122
         t.status,
123 123
         t.ticket_id AS ticketId,
124 124
         t.community_id AS communityId,
125
+        t.content AS content,
125 126
         d.NAME AS ticketStatusName
126 127
     FROM
127 128
         tp_ticket_record t