ソースを参照

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
             tpTicketVO.setRepairName(repairName);
142
             tpTicketVO.setRepairName(repairName);
143
             tpTicketVO.setStatus(recordList.get(0).getStatus());
143
             tpTicketVO.setStatus(recordList.get(0).getStatus());
144
             tpTicketVO.setTicketStatusName(recordList.get(0).getTicketStatusName());
144
             tpTicketVO.setTicketStatusName(recordList.get(0).getTicketStatusName());
145
+            tpTicketVO.setTicketRecordDate(recordList.get(0).getCreateDate());
145
             if (null != comment) {
146
             if (null != comment) {
146
                 tpTicketVO.setCommentContent(comment.getContent());
147
                 tpTicketVO.setCommentContent(comment.getContent());
147
                 tpTicketVO.setCommentCreateDate(comment.getCreateDate());
148
                 tpTicketVO.setCommentCreateDate(comment.getCreateDate());

+ 3
- 0
CODE/smart-community/app-api/src/main/java/com/community/huiju/vo/TpTicketVO.java ファイルの表示

58
     /** 流程状态名称 **/
58
     /** 流程状态名称 **/
59
     private String ticketStatusName;
59
     private String ticketStatusName;
60
 
60
 
61
+    /** 流程状态时间 **/
62
+    private Date ticketRecordDate;
63
+
61
     /** 最新进展 **/
64
     /** 最新进展 **/
62
     private String commentContent;
65
     private String commentContent;
63
 
66