dingxin 6 years ago
parent
commit
968fd47325

+ 1
- 1
CODE/smart-community/app-api/src/main/java/com/community/huiju/dao/TpTicketMapper.java View File

@@ -46,5 +46,5 @@ public interface TpTicketMapper {
46 46
      */
47 47
     TpTicket getTicketTpUserId(@Param("ticketId") Integer ticketId, @Param("communityId") Integer communityId);
48 48
 
49
-    Integer selectRecordStatus(@Param("communityId") Integer communityId, @Param("ticketId")TpTicket tpTicket);
49
+    Integer selectRecordStatus(@Param("communityId") Integer communityId, @Param("ticketId")Integer ticketId);
50 50
 }

+ 1
- 1
CODE/smart-community/app-api/src/main/java/com/community/huiju/service/impl/SocialServiceImpl.java View File

@@ -600,7 +600,7 @@ public class SocialServiceImpl implements SocialServiceI {
600 600
         message.setMessageType(tic.getType());
601 601
         message.setAdviceType("4");
602 602
         message.setModelType("1");
603
-        Integer createUser=tpTicketMapper.selectRecordStatus(communityId,tpTicket);
603
+        Integer createUser=tpTicketMapper.selectRecordStatus(communityId,tpTicket.getId());
604 604
         message.setUuid(createUser);
605 605
         message.setUuidType("2");
606 606
         message.setSource("2");