修复问题
This commit is contained in:
		| @@ -129,7 +129,6 @@ | ||||
|     <update id="updateSysCustomer" parameterType="SysCustomer"> | ||||
|         update sys_customer | ||||
|         <trim prefix="SET" suffixOverrides=","> | ||||
|             <if test="id != null">out_id = md5(#{id}),</if> | ||||
|             <if test="name != null">name = #{name},</if> | ||||
|             <if test="phone != null">phone = #{phone},</if> | ||||
|             <if test="fansTime != null">fans_time = #{fansTime},</if> | ||||
|   | ||||
| @@ -80,7 +80,6 @@ | ||||
|         insert into sys_customer_physical_signs | ||||
|         <trim prefix="(" suffix=")" suffixOverrides=","> | ||||
|             <if test="customerId != null">customer_id,</if> | ||||
|             <if test="customerId != null">out_id,</if> | ||||
|             <if test="sex != null">sex,</if> | ||||
|             <if test="age != null">age,</if> | ||||
|             <if test="tall != null">tall,</if> | ||||
| @@ -118,7 +117,6 @@ | ||||
|         </trim> | ||||
|         <trim prefix="values (" suffix=")" suffixOverrides=","> | ||||
|             <if test="customerId != null">#{customerId},</if> | ||||
|             <if test="customerId != null">md5#{customerId},</if> | ||||
|             <if test="sex != null">#{sex},</if> | ||||
|             <if test="age != null">#{age},</if> | ||||
|             <if test="tall != null">#{tall},</if> | ||||
| @@ -160,7 +158,6 @@ | ||||
|         update sys_customer_physical_signs | ||||
|         <trim prefix="SET" suffixOverrides=","> | ||||
|             <if test="customerId != null">customer_id = #{customerId},</if> | ||||
|             <if test="customerId != null">out_id = md5(#{customerId}),</if> | ||||
|             <if test="sex != null">sex = #{sex},</if> | ||||
|             <if test="age != null">age = #{age},</if> | ||||
|             <if test="tall != null">tall = #{tall},</if> | ||||
|   | ||||
| @@ -206,7 +206,6 @@ | ||||
|             <if test="orderId != null">order_id,</if> | ||||
|             <if test="customer != null and customer != ''">customer,</if> | ||||
|             <if test="cusId != null">cus_id,</if> | ||||
|             <if test="cusId != null">out_id,</if> | ||||
|             <if test="phone != null">phone,</if> | ||||
|             <if test="payTypeId != null">pay_type_id,</if> | ||||
|             <if test="reviewStatus != null">review_status,</if> | ||||
| @@ -249,7 +248,6 @@ | ||||
|             <if test="orderId != null">#{orderId},</if> | ||||
|             <if test="customer != null and customer != ''">#{customer},</if> | ||||
|             <if test="cusId != null">#{cusId},</if> | ||||
|             <if test="cusId != null">md5(#{cusId}),</if> | ||||
|             <if test="phone != null">#{phone},</if> | ||||
|             <if test="payTypeId != null">#{payTypeId},</if> | ||||
|             <if test="reviewStatus != null">#{reviewStatus},</if> | ||||
|   | ||||
| @@ -8,7 +8,6 @@ | ||||
|         <result property="id" column="id"/> | ||||
|         <result property="orderId" column="order_id"/> | ||||
|         <result property="cusId" column="cus_id"/> | ||||
|         <result property="outId" column="out_id"/> | ||||
|         <result property="pauseStartDate" column="pause_start_date"/> | ||||
|         <result property="pauseEndDate" column="pause_end_date"/> | ||||
|         <result property="reason" column="reason"/> | ||||
| @@ -25,7 +24,7 @@ | ||||
|     </sql> | ||||
|  | ||||
|     <sql id="selectSysOrderPauseVo"> | ||||
|         select id, order_id, cus_id, out_id, pause_start_date, pause_end_date, reason, remarks, create_time, create_by, update_time, update_by, del_flag from sys_recipes_pause sop | ||||
|         select id, order_id, cus_id, pause_start_date, pause_end_date, reason, remarks, create_time, create_by, update_time, update_by, del_flag from sys_recipes_pause sop | ||||
|     </sql> | ||||
|  | ||||
|     <select id="selectSysOrderPauseList" parameterType="SysOrderPause" resultMap="SysOrderPauseResult"> | ||||
| @@ -37,7 +36,6 @@ | ||||
|         where sop.del_flag = 0 | ||||
|         <if test="orderId != null ">and sop.order_id = #{orderId}</if> | ||||
|         <if test="cusId != null ">and sop.cus_id = #{cusId}</if> | ||||
|         <if test="outId != null ">and sop.out_id = #{outId}</if> | ||||
|         <if test="pauseStartDate != null ">and sop.pause_start_date = #{pauseStartDate}</if> | ||||
|         <if test="pauseEndDate != null ">and sop.pause_end_date = #{pauseEndDate}</if> | ||||
|         <if test="reason != null  and reason != ''">and sop.reason = #{reason}</if> | ||||
| @@ -86,7 +84,7 @@ | ||||
|         <trim prefix="SET" suffixOverrides=","> | ||||
|             <if test="orderId != null">order_id = #{orderId},</if> | ||||
|             <if test="cusId != null">cus_id = #{cusId},</if> | ||||
|             <if test="outId != null">out_id = #{outId},</if> | ||||
|             <if test="cusId != null">out_id = md5(#{cusId}),</if> | ||||
|             <if test="pauseStartDate != null">pause_start_date = #{pauseStartDate},</if> | ||||
|             <if test="pauseEndDate != null">pause_end_date = #{pauseEndDate},</if> | ||||
|             <if test="reason != null">reason = #{reason},</if> | ||||
|   | ||||
| @@ -7,7 +7,6 @@ | ||||
|     <resultMap type="SysWxUserInfo" id="SysWxUserInfoResult"> | ||||
|         <result property="openid" column="openid"/> | ||||
|         <result property="cusId" column="cus_id"/> | ||||
|         <result property="customerId" column="out_id"/> | ||||
|         <result property="nickName" column="nick_name"/> | ||||
|         <result property="appid" column="appid"/> | ||||
|         <result property="phone" column="phone"/> | ||||
| @@ -58,7 +57,6 @@ | ||||
|             <if test="nickName != null">nick_name,</if> | ||||
|             <if test="appid != null">appid,</if> | ||||
|             <if test="cusId != null">cus_id,</if> | ||||
|             <if test="cusId != null">out_id,</if> | ||||
|             <if test="phone != null">phone,</if> | ||||
|             <if test="avatarUrl != null">avatar_url,</if> | ||||
|             <if test="sex != null">sex,</if> | ||||
| @@ -77,7 +75,6 @@ | ||||
|             <if test="nickName != null">#{nickName},</if> | ||||
|             <if test="appid != null">#{appid},</if> | ||||
|             <if test="cusId != null">#{cusId},</if> | ||||
|             <if test="cusId != null">md5(#{cusId}),</if> | ||||
|             <if test="phone != null">#{phone},</if> | ||||
|             <if test="avatarUrl != null">#{avatarUrl},</if> | ||||
|             <if test="sex != null">#{sex},</if> | ||||
| @@ -99,7 +96,6 @@ | ||||
|             <if test="nickName != null">nick_name = #{nickName},</if> | ||||
|             <if test="appid != null">appid = #{appid},</if> | ||||
|             <if test="cusId != null">cus_id = #{cusId},</if> | ||||
|             <if test="cusId != null">out_id = md5(#{cusId}),</if> | ||||
|             <if test="phone != null">phone = #{phone},</if> | ||||
|             <if test="avatarUrl != null">avatar_url = #{avatarUrl},</if> | ||||
|             <if test="sex != null">sex = #{sex},</if> | ||||
|   | ||||
		Reference in New Issue
	
	Block a user