Przeglądaj źródła

20211201后端更新代码_1

mashengyi 3 lat temu
rodzic
commit
ab21c1efc5

+ 2 - 2
src/main/resources/mapper/customer/CustomerCarRecMapper.xml

@@ -37,7 +37,7 @@
         and  car_num = BINARY #{query.carNum}
       </if>
       <if test="query.companyName != null and query.companyName != ''">
-        and  company_name BINARY LIKE CONCAT('%',#{query.companyName},'%')
+        and  company_name  LIKE BINARY CONCAT('%',#{query.companyName},'%')
       </if>
       <if test="query.companyNum != null and query.companyNum != ''">
         and  companyNum = BINARY #{query.companyNum}
@@ -93,7 +93,7 @@
   <update id="updateWaitETCStatus" parameterType="com.jkcredit.invoice.model.entity.customer.CustomerCarRec">
     update t_customer_carRec set rec_status = #{recStatus,jdbcType=INTEGER} ,succ_time = #{succTime,jdbcType=VARCHAR}, fail_time = #{failTime,jdbcType=VARCHAR}
     , fail_reason = #{failReason,jdbcType=VARCHAR}, inter_type = #{interType,jdbcType=VARCHAR}
-    where  companyNum = BINARY #{companyNum,jdbcType=VARCHAR} and BINARY cust_phone = #{custPhone,jdbcType=VARCHAR} AND bussiness_type=0 and rec_status = 3
+    where  companyNum = BINARY #{companyNum,jdbcType=VARCHAR} and  cust_phone = BINARY #{custPhone,jdbcType=VARCHAR} AND bussiness_type=0 and rec_status = 3
   </update>
   <delete id="selectByCustomerName" parameterType="java.lang.String">
     delete from t_customer_carRec

+ 6 - 6
src/main/resources/mapper/customer/CustomerRecMapper.xml

@@ -52,7 +52,7 @@
       and  company_referenceNum = BINARY #{customerRec.companyReferencenum}
     </if>
     <if test="customerRec.companyName != null and customerRec.companyName != ''">
-      and  company_name BINARY LIKE CONCAT('%',#{customerRec.companyName},'%')
+      and  company_name  LIKE BINARY CONCAT('%',#{customerRec.companyName},'%')
     </if>
       <if test="customerRec.companyBelongName != null and customerRec.companyBelongName != ''">
         and company_belong_name  LIKE CONCAT('%',#{customerRec.companyBelongName},'%')
@@ -72,10 +72,10 @@
         AND   customerName = BINARY #{customerRec.customerName}
       </if>
       <if test="customerRec.companyName != null and customerRec.companyName != ''">
-        and  company_name BINARY LIKE CONCAT('%',#{customerRec.companyName},'%')
+        and  company_name  LIKE BINARY CONCAT('%',#{customerRec.companyName},'%')
       </if>
       <if test="customerRec.companyBelongName != null and customerRec.companyBelongName != ''">
-        and  company_belong_name BINARY  LIKE CONCAT('%',#{customerRec.companyBelongName},'%')
+        and  company_belong_name   LIKE BINARY CONCAT('%',#{customerRec.companyBelongName},'%')
       </if>
     </where>
     ORDER by customerName
@@ -110,20 +110,20 @@
     from t_customer_rec
     where  customerName = BINARY #{customerRec.customerName,jdbcType=VARCHAR}
     <if test="customerRec.companyName != null and customerRec.companyName != ''">
-      and  company_name BINARY  LIKE CONCAT('%',#{customerRec.companyName},'%')
+      and  company_name   LIKE BINARY CONCAT('%',#{customerRec.companyName},'%')
     </if>
   </select>
     <select id="selectByCustomerNameAndCompany" resultMap="BaseResultMap" parameterType="com.jkcredit.invoice.model.entity.customer.CustomerRec" >
         select
         <include refid="Base_Column_List" />
         from t_customer_rec
-        where  customerName = BINARY #{customerName,jdbcType=VARCHAR} AND BINARY company_name =  #{companyName,jdbcType=VARCHAR}
+        where  customerName = BINARY #{customerName,jdbcType=VARCHAR} AND  company_name = BINARY  #{companyName,jdbcType=VARCHAR}
     </select>
   <select id="selectByCustomerNameAndCompanyReference" resultMap="BaseResultMap" parameterType="com.jkcredit.invoice.model.entity.customer.CustomerRec" >
     select
     <include refid="Base_Column_List" />
     from t_customer_rec
-    where  customerName = BINARY #{customerName,jdbcType=VARCHAR} AND BINARY company_referenceNum =  #{companyReferencenum,jdbcType=VARCHAR} and rec_status =1
+    where  customerName = BINARY #{customerName,jdbcType=VARCHAR} AND  company_referenceNum = BINARY #{companyReferencenum,jdbcType=VARCHAR} and rec_status =1
   </select>
     <select id="selectByCompanyReference" resultMap="BaseResultMap" parameterType="java.lang.String" >
         select

+ 4 - 4
src/main/resources/mapper/customer/CustomerRechargeMapper.xml

@@ -18,10 +18,10 @@
     from t_customer_recharge
     <where>
       <if test="customerRecharge.customerName != null and customerRecharge.customerName != ''">
-        and BINARY customer_name = #{customerRecharge.customerName}
+        and  customer_name = BINARY #{customerRecharge.customerName}
       </if>
       <if test="customerRecharge.companyName != null and customerRecharge.companyName != ''">
-        and BINARY companyName LIKE CONCAT('%',#{customerRecharge.companyName},'%')
+        and  companyName LIKE BINARY CONCAT('%',#{customerRecharge.companyName},'%')
       </if>
       <if test="customerRecharge.rechargeMony != null and customerRecharge.rechargeMony != ''">
         and recharge_mony = #{rechargeMony,jdbcType=DOUBLE}
@@ -38,10 +38,10 @@
     <where>
       1 = 1
       <if test="customerRecharge.customerName != null and customerRecharge.customerName != ''">
-        and BINARY customer_name = #{customerRecharge.customerName}
+        and  customer_name = BINARY #{customerRecharge.customerName}
       </if>
       <if test="customerRecharge.companyName != null and customerRecharge.companyName != ''">
-        and BINARY companyName LIKE CONCAT('%',#{customerRecharge.companyName},'%')
+        and  companyName LIKE BINARY CONCAT('%',#{customerRecharge.companyName},'%')
       </if>
       <if test="customerRecharge.rechargeMony != null and customerRecharge.rechargeMony != ''">
         and recharge_mony = #{rechargeMony,jdbcType=DOUBLE}

+ 1 - 1
src/main/resources/mapper/invoice/SelfCarInvoiceMapper.xml

@@ -171,6 +171,6 @@
         select
         <include refid="baseSql" />
         from t_SelfCarInvoice
-        where BINARY tradeId = #{tradeId,jdbcType=VARCHAR} and invoiceMakeTime = #{invoiceMakeTime,jdbcType=VARCHAR} and BINARY invoiceUrl= #{invoiceUrl,jdbcType=VARCHAR}
+        where  tradeId = BINARY #{tradeId,jdbcType=VARCHAR} and invoiceMakeTime = #{invoiceMakeTime,jdbcType=VARCHAR} and  invoiceUrl= BINARY #{invoiceUrl,jdbcType=VARCHAR}
     </select>
 </mapper>

+ 4 - 4
src/main/resources/mapper/manager/ParamMapper.xml

@@ -25,13 +25,13 @@
         t_manager_param
         <where>
             <if test="query.paramName != null and query.paramName != ''">
-                and BINARY param_name LIKE CONCAT('%',#{query.paramName},'%')
+                and  param_name LIKE BINARY CONCAT('%',#{query.paramName},'%')
             </if>
             <if test="query.paramValue != null and query.paramValue != ''">
-                and BINARY param_value = #{query.paramValue}
+                and  param_value = BINARY #{query.paramValue}
             </if>
             <if test="query.paramNote != null and query.paramNote != ''">
-                and BINARY param_note LIKE CONCAT('%',#{query.paramNote},'%')
+                and  param_note LIKE BINARY CONCAT('%',#{query.paramNote},'%')
             </if>
         </where>
     </select>
@@ -44,7 +44,7 @@
         FROM
         t_manager_param
         WHERE
-        BINARY  param_name = #{paramName}
+          param_name = BINARY #{paramName}
 
     </select>
 

+ 3 - 3
src/main/resources/mapper/user/UserMapper.xml

@@ -36,7 +36,7 @@
         <include refid="userSql" />
         FROM
             t_user
-        WHERE BINARY user_name = #{userName}
+        WHERE  user_name = BINARY #{userName}
     </select>
 
     <select id="getAllUser" resultMap="baseResultMap">
@@ -63,10 +63,10 @@
             t_user
         <where>
             <if test="query.userName != null and query.userName != ''">
-                and BINARY user_name = #{query.userName}
+                and  user_name = BINARY #{query.userName}
             </if>
             <if test="query.company != null and query.company != ''">
-                and BINARY company  LIKE CONCAT('%',#{query.company},'%')
+                and  company  LIKE BINARY CONCAT('%',#{query.company},'%')
             </if>
         </where>
         order by create_time desc

+ 1 - 1
src/main/resources/mapper/waybill/SellCarTradeMapper.xml

@@ -68,7 +68,7 @@
     <select id="selectByTradeId" resultMap="BaseResultMap" parameterType="java.lang.String">
         select
         <include refid="baseSql" />
-        from t_SellCarTrade where BINARY tradeId = #{tradeId,jdbcType=VARCHAR}
+        from t_SellCarTrade where  tradeId = BINARY #{tradeId,jdbcType=VARCHAR}
     </select>
     <insert id="insert" parameterType="com.jkcredit.invoice.model.entity.waybill.SelfCarTrade" >
         insert into t_SellCarTrade (