线索加大区

This commit is contained in:
wangxiaopeng
2024-06-04 09:34:42 +08:00
parent 7a221f7530
commit c9ed6dc779
6 changed files with 19 additions and 3 deletions

View File

@@ -30,6 +30,7 @@
<result column="update_user_id" jdbcType="VARCHAR" property="updateUserId" />
<result column="deleted" jdbcType="BIT" property="deleted" />
<result column="partner_num" jdbcType="VARCHAR" property="partnerNum" />
<result column="big_region_id" jdbcType="BIGINT" property="bigRegionId" />
</resultMap>
<insert id="insertOrUpdate" parameterType="com.cool.store.entity.LineInfoDO" useGeneratedKeys="true" keyProperty="id">
INSERT INTO xfsg_line_info
@@ -43,6 +44,9 @@
<if test="param.regionId != null">
region_id,
</if>
<if test="param.bigRegionId != null">
big_region_id,
</if>
<if test="param.mobile != null and param.mobile != ''">
mobile,
</if>
@@ -129,6 +133,9 @@
<if test="param.regionId != null">
#{param.regionId},
</if>
<if test="param.bigRegionId != null">
#{param.bigRegionId},
</if>
<if test="param.mobile != null and param.mobile != ''">
#{param.mobile},
</if>
@@ -213,6 +220,9 @@
<if test="param.regionId != null">
region_id = #{param.regionId},
</if>
<if test="param.bigRegionId != null">
big_region_id = #{param.bigRegionId},
</if>
<if test="param.mobile != null and param.mobile != ''">
mobile = #{param.mobile},
</if>