Browse Source

Merge branch 'v3.5.1' of http://git.ycjcjy.com/zhiyuxing/estateagents into v3.5.1

胡轶钦 5 years ago
parent
commit
369e09342b

+ 3
- 3
src/main/java/com/huiju/estateagents/excel/AgentsRecommendCustomer.java View File

55
     /**
55
     /**
56
      * 邀请经纪人(数量)
56
      * 邀请经纪人(数量)
57
      */
57
      */
58
-    @ColumnWidth(15)
59
-    @ExcelProperty(value = "邀请经纪人(数量)", index = 6)
60
-    private String agentCount;
58
+//    @ColumnWidth(15)
59
+//    @ExcelProperty(value = "邀请经纪人(数量)", index = 6)
60
+//    private String agentCount;
61
 
61
 
62
 }
62
 }

+ 1
- 1
src/main/resources/mapper/TaBuildingMapper.xml View File

196
 
196
 
197
     <select id="getBuildingListById" resultType="com.huiju.estateagents.entity.TaBuilding">
197
     <select id="getBuildingListById" resultType="com.huiju.estateagents.entity.TaBuilding">
198
       select * from ta_building t where t.building_id in (
198
       select * from ta_building t where t.building_id in (
199
-	    select t.building_id from ta_goods t where t.org_id = #{orgId} and t.city_id = #{cityId} group by t.building_id
199
+	    select t.building_id from ta_goods t where t.org_id = #{orgId} and t.city_id = #{cityId} and `status`=1 group by t.building_id
200
       )
200
       )
201
     </select>
201
     </select>
202
 
202