andrew 4 yıl önce
ebeveyn
işleme
bd4b158a25

+ 1
- 1
src/main/java/com/huiju/estateagents/property/controller/TpTicketController.java Dosyayı Görüntüle

@@ -113,7 +113,7 @@ public class TpTicketController extends BaseController {
113 113
     }
114 114
 
115 115
 
116
-    @RequestMapping(value = "/wx/tickets/{orgId}", method = RequestMethod.GET)
116
+    @RequestMapping(value = "/wx/ticketList/{orgId}", method = RequestMethod.GET)
117 117
     @ApiOperation(value = "获取 报修/投诉/联系单 各3条数据", notes = "根据 小区编号,第几页,一页多少行")
118 118
     @ApiImplicitParams({
119 119
             @ApiImplicitParam(paramType = "path",dataType = "Integer",name = "orgId",value = "小区编号"),

+ 1
- 1
src/main/resources/mapper/property/BillInvoiceMapper.xml Dosyayı Görüntüle

@@ -145,7 +145,7 @@
145 145
         FROM
146 146
         tp_bill_invoice i
147 147
         LEFT JOIN tp_bill b ON b.id = i.bill_id
148
-        AND b.org_id = #{communityId,jdbcType=INTEGER}
148
+        AND b.org_id = #{orgId,jdbcType=INTEGER}
149 149
         WHERE
150 150
         i.orgId = #{orgId,jdbcType=INTEGER}
151 151
         <if test="payType == 0">

+ 2
- 2
src/main/resources/mapper/property/TpAnnouncementMapper.xml Dosyayı Görüntüle

@@ -89,9 +89,9 @@
89 89
     FROM
90 90
     tp_announcement a
91 91
     LEFT JOIN tp_user u ON a.create_user = u.id
92
-    AND u.community_id = #{communityId,jdbcType=INTEGER}
92
+    AND u.org_id = #{orgId,jdbcType=INTEGER}
93 93
     WHERE
94
-    a.community_id = #{communityId,jdbcType=INTEGER}
94
+    a.org_id = #{orgId,jdbcType=INTEGER}
95 95
     AND ( a.STATUS = 1 OR a.STATUS = 3 )
96 96
     <if test="title != null and title != ''">
97 97
       and a.announcement_title like concat('%',#{title,jdbcType=VARCHAR},'%')