|
@@ -38,6 +38,7 @@
|
|
|
<result property="receiptAddress" column="receipt_address" />
|
|
<result property="receiptAddress" column="receipt_address" />
|
|
|
<result property="promoter" column="promoter_" />
|
|
<result property="promoter" column="promoter_" />
|
|
|
<result property="issue" column="issue_" />
|
|
<result property="issue" column="issue_" />
|
|
|
|
|
+ <result property="qualificationStatus" column="qualification_status" />
|
|
|
</resultMap>
|
|
</resultMap>
|
|
|
<insert id="insert" parameterType="com.jpsoft.employment.modules.base.entity.TechnicianInfo">
|
|
<insert id="insert" parameterType="com.jpsoft.employment.modules.base.entity.TechnicianInfo">
|
|
|
<!--
|
|
<!--
|
|
@@ -47,7 +48,7 @@
|
|
|
-->
|
|
-->
|
|
|
<![CDATA[
|
|
<![CDATA[
|
|
|
insert into base_technician_info
|
|
insert into base_technician_info
|
|
|
- (id_,user_name,password_,open_id,phone_,id_card,real_name,region_,image_,gender_,introduction_,service_info,business_scope,id_card_image,is_verified,promo_code,create_time,update_time,del_flag,create_by,update_by,status_,level_,deposit_,qualification_,receive_name,receive_bank,receive_account,receipt_name,receipt_phone,receipt_region,receipt_address,promoter_,issue_)
|
|
|
|
|
|
|
+ (id_,user_name,password_,open_id,phone_,id_card,real_name,region_,image_,gender_,introduction_,service_info,business_scope,id_card_image,is_verified,promo_code,create_time,update_time,del_flag,create_by,update_by,status_,level_,deposit_,qualification_,receive_name,receive_bank,receive_account,receipt_name,receipt_phone,receipt_region,receipt_address,promoter_,issue_,qualification_status)
|
|
|
values
|
|
values
|
|
|
(
|
|
(
|
|
|
#{id,jdbcType=VARCHAR}
|
|
#{id,jdbcType=VARCHAR}
|
|
@@ -84,6 +85,7 @@
|
|
|
,#{receiptAddress,jdbcType= VARCHAR }
|
|
,#{receiptAddress,jdbcType= VARCHAR }
|
|
|
,#{promoter,jdbcType= VARCHAR }
|
|
,#{promoter,jdbcType= VARCHAR }
|
|
|
,#{issue,jdbcType= NUMERIC }
|
|
,#{issue,jdbcType= NUMERIC }
|
|
|
|
|
+,#{qualificationStatus,jdbcType= NUMERIC }
|
|
|
)
|
|
)
|
|
|
]]>
|
|
]]>
|
|
|
</insert>
|
|
</insert>
|
|
@@ -153,6 +155,9 @@
|
|
|
<if test="updateBy!=null">
|
|
<if test="updateBy!=null">
|
|
|
update_by=#{updateBy,jdbcType=VARCHAR},
|
|
update_by=#{updateBy,jdbcType=VARCHAR},
|
|
|
</if>
|
|
</if>
|
|
|
|
|
+ <if test="status!=null">
|
|
|
|
|
+ status_=#{status,jdbcType=VARCHAR},
|
|
|
|
|
+ </if>
|
|
|
<if test="level!=null">
|
|
<if test="level!=null">
|
|
|
level_=#{level,jdbcType= NUMERIC },
|
|
level_=#{level,jdbcType= NUMERIC },
|
|
|
</if>
|
|
</if>
|
|
@@ -189,6 +194,9 @@
|
|
|
<if test="issue!=null">
|
|
<if test="issue!=null">
|
|
|
issue_=#{issue,jdbcType=NUMERIC},
|
|
issue_=#{issue,jdbcType=NUMERIC},
|
|
|
</if>
|
|
</if>
|
|
|
|
|
+ <if test="qualificationStatus!=null">
|
|
|
|
|
+ qualification_status=#{qualificationStatus,jdbcType=NUMERIC},
|
|
|
|
|
+ </if>
|
|
|
</set>
|
|
</set>
|
|
|
where id_=#{id}
|
|
where id_=#{id}
|
|
|
</update>
|
|
</update>
|