|
|
|
|
@ -38,7 +38,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
<!--<include refid="bmProjectInfo"/>-->
|
|
|
|
|
select a.lot_id, a.pro_id, a.lot_name, a.status, a.type_id, a.link_man, a.telphone, a.own_pro, a.dept_id, a.is_share,
|
|
|
|
|
a.lon, a.lat, a.del_flag, a.create_by, a.create_time,a.remark,a.company_id ,b.dept_name, c.name,a.start_date,a.completion_date,
|
|
|
|
|
a.longitude,a.latitude,a.address,a.province
|
|
|
|
|
a.longitude,a.latitude,a.address,a.province,a.details_address
|
|
|
|
|
from bm_project_lot a
|
|
|
|
|
left join sys_dept b on a.dept_id = b.dept_id
|
|
|
|
|
left join sys_dic c on a.type_id = c.id
|
|
|
|
|
@ -122,6 +122,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
<if test="latitude != null and latitude != ''">latitude,</if>
|
|
|
|
|
<if test="address != null and address != ''">address,</if>
|
|
|
|
|
<if test="province != null and province != ''">province,</if>
|
|
|
|
|
<if test="detailsAddress != null and detailsAddress != ''">details_address,</if>
|
|
|
|
|
create_time
|
|
|
|
|
)values(
|
|
|
|
|
<if test="lotName != null and lotName != ''">#{lotName},</if>
|
|
|
|
|
@ -143,6 +144,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
<if test="latitude != null and latitude != ''">#{latitude},</if>
|
|
|
|
|
<if test="address != null and address != ''">#{address},</if>
|
|
|
|
|
<if test="province != null and province != ''">#{province},</if>
|
|
|
|
|
<if test="detailsAddress != null and detailsAddress != ''">#{detailsAddress},</if>
|
|
|
|
|
sysdate()
|
|
|
|
|
)
|
|
|
|
|
</insert>
|
|
|
|
|
@ -167,6 +169,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
<if test="longitude != null and longitude != ''">longitude = #{longitude},</if>
|
|
|
|
|
<if test="latitude != null and latitude != ''">latitude = #{latitude},</if>
|
|
|
|
|
<if test="address != null and address != ''">address = #{address},</if>
|
|
|
|
|
<if test="detailsAddress != null and detailsAddress != ''">details_address = #{detailsAddress},</if>
|
|
|
|
|
update_time = sysdate()
|
|
|
|
|
</set>
|
|
|
|
|
where lot_id = #{lotId}
|
|
|
|
|
|