Commit 6f6b6e56 authored by lixuan's avatar lixuan

feat: 房源

parent e2930b8c
......@@ -77,4 +77,6 @@ public class HouseResource implements Serializable {
private String lat;
private String remark;
private Integer showFlag;
}
......@@ -37,6 +37,7 @@
<result property="lon" column="lon" jdbcType="VARCHAR"/>
<result property="lat" column="lat" jdbcType="VARCHAR"/>
<result property="remark" column="remark" jdbcType="VARCHAR"/>
<result property="showFlag" column="show_flag" jdbcType="INTEGER"/>
</resultMap>
<insert id="insertHouseResource" parameterType="com.ruoyi.system.domain.house.HouseResource">
......@@ -129,6 +130,7 @@
LEFT JOIN business_entity_info t3 ON t1.id = t3.house_resource_id
LEFT JOIN business_entity_sell t4 ON t4.business_entity_info_id = t3.id
<where>
and t1.show_flag = 1
<if test="query.wgType != null">
and t1.type = #{query.wgType}
</if>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment