|
|
@@ -35,6 +35,8 @@
|
|
|
<result property="kdzlAddWechatStatus" column="kdzl_add_wechat_status" />
|
|
|
<result property="kdzlMakeStatus" column="kdzl_make_status" />
|
|
|
<result property="kdzlCallStatus" column="kdzl_call_status" />
|
|
|
+ <result property="processStatus" column="process_status" />
|
|
|
+ <result property="prescribeId" column="prescribe_id" />
|
|
|
</resultMap>
|
|
|
|
|
|
<sql id="selectFsCompanyCustomerVo">
|
|
|
@@ -44,7 +46,8 @@
|
|
|
create_by, create_time, update_by, update_time, remark, del_flag, import_member_id,
|
|
|
buy_count, claim_status,
|
|
|
complete_status, dept_id, dept_name,
|
|
|
- kdzl_add_wechat_status, kdzl_make_status, kdzl_call_status
|
|
|
+ kdzl_add_wechat_status, kdzl_make_status, kdzl_call_status,
|
|
|
+ process_status, prescribe_id
|
|
|
from fs_company_customer
|
|
|
</sql>
|
|
|
|
|
|
@@ -222,6 +225,8 @@
|
|
|
<if test="kdzlAddWechatStatus != null">kdzl_add_wechat_status,</if>
|
|
|
<if test="kdzlMakeStatus != null">kdzl_make_status,</if>
|
|
|
<if test="kdzlCallStatus != null">kdzl_call_status,</if>
|
|
|
+ <if test="processStatus != null">process_status,</if>
|
|
|
+ <if test="prescribeId != null">prescribe_id,</if>
|
|
|
create_time
|
|
|
</trim>
|
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
@@ -251,6 +256,8 @@
|
|
|
<if test="kdzlAddWechatStatus != null">#{kdzlAddWechatStatus},</if>
|
|
|
<if test="kdzlMakeStatus != null">#{kdzlMakeStatus},</if>
|
|
|
<if test="kdzlCallStatus != null">#{kdzlCallStatus},</if>
|
|
|
+ <if test="processStatus != null">#{processStatus},</if>
|
|
|
+ <if test="prescribeId != null">#{prescribeId},</if>
|
|
|
sysdate()
|
|
|
</trim>
|
|
|
</insert>
|
|
|
@@ -300,6 +307,8 @@
|
|
|
<if test="kdzlAddWechatStatus != null">kdzl_add_wechat_status = #{kdzlAddWechatStatus},</if>
|
|
|
<if test="kdzlMakeStatus != null">kdzl_make_status = #{kdzlMakeStatus},</if>
|
|
|
<if test="kdzlCallStatus != null">kdzl_call_status = #{kdzlCallStatus},</if>
|
|
|
+ <if test="processStatus != null">process_status = #{processStatus},</if>
|
|
|
+ <if test="prescribeId != null">prescribe_id = #{prescribeId},</if>
|
|
|
<if test="updateBy != null">update_by = #{updateBy},</if>
|
|
|
update_time = sysdate()
|
|
|
</set>
|