Browse Source

后端代码提交

mashengyi 3 years ago
parent
commit
0589f9075e

+ 11 - 11
src/main/resources/mapper/calculateInfor/NoCarCalculateInforMapper.xml

@@ -36,19 +36,19 @@
         <where>
             1 = 1
             <if test="calculateInfor.customId != null and calculateInfor.customId != ''">
-                and BINARY customId = #{calculateInfor.customId}
+                and  customId = BINARY #{calculateInfor.customId}
             </if>
             <if test="calculateInfor.companyLongName != null and calculateInfor.companyLongName != ''">
-                and BINARY companyLongName =#{calculateInfor.companyLongName}
+                and  companyLongName = BINARY #{calculateInfor.companyLongName}
             </if>
             <if test="calculateInfor.buyerName != null and calculateInfor.buyerName != ''">
-                and BINARY buyerName =#{calculateInfor.buyerName}
+                and  buyerName = BINARY #{calculateInfor.buyerName}
             </if>
             <if test="calculateInfor.buyerTaxpayerCode != null and calculateInfor.buyerTaxpayerCode != ''">
-                and BINARY buyerTaxpayerCode = #{calculateInfor.buyerTaxpayerCode}
+                and  buyerTaxpayerCode = BINARY #{calculateInfor.buyerTaxpayerCode}
             </if>
             <if test="calculateInfor.tradeId != null and calculateInfor.tradeId != ''">
-                and BINARY tradeId = #{calculateInfor.tradeId}
+                and  tradeId = BINARY #{calculateInfor.tradeId}
             </if>
             <if test="calculateInfor.invoiceMakeTime != null and calculateInfor.invoiceMakeTime != ''">
                 and invoiceMakeTime BETWEEN #{calculateInfor.invoiceMakeStart} and #{calculateInfor.invoiceMakeEnd}
@@ -72,19 +72,19 @@
         from t_CalculateInfor
         <where>
             <if test="calculateInfor.customId != null and calculateInfor.customId != ''">
-                and BINARY customId = #{calculateInfor.customId}
+                and  customId = BINARY #{calculateInfor.customId}
             </if>
             <if test="calculateInfor.buyerName != null and calculateInfor.buyerName != ''">
-                and BINARY buyerName LIKE CONCAT('%',#{calculateInfor.buyerName},'%')
+                and  buyerName LIKE BINARY CONCAT('%',#{calculateInfor.buyerName},'%')
             </if>
             <if test="calculateInfor.buyerTaxpayerCode != null and calculateInfor.buyerTaxpayerCode != ''">
-                and BINARY buyerTaxpayerCode = #{calculateInfor.buyerTaxpayerCode}
+                and  buyerTaxpayerCode = BINARY #{calculateInfor.buyerTaxpayerCode}
             </if>
             <if test="calculateInfor.invoiceMakeTime != null and calculateInfor.invoiceMakeTime != ''">
-                and BINARY invoiceMakeTime BETWEEN #{calculateInfor.invoiceMakeStart} and #{calculateInfor.invoiceMakeEnd}
+                and  invoiceMakeTime BETWEEN #{calculateInfor.invoiceMakeStart} and #{calculateInfor.invoiceMakeEnd}
             </if>
             <if test="calculateInfor.calculateTime != null and calculateInfor.calculateTime != ''">
-                and BINARY calculateTime BETWEEN #{calculateInfor.calculateStart} and #{calculateInfor.calculateEnd}
+                and  calculateTime BETWEEN #{calculateInfor.calculateStart} and #{calculateInfor.calculateEnd}
             </if>
         </where>
 
@@ -94,7 +94,7 @@
     <select id="selectByTradeId" resultMap="BaseResultMap">
         select
         <include refid="baseSql" />
-        from t_CalculateInfor where BINARY tradeId = #{tradeId,jdbcType=VARCHAR}
+        from t_CalculateInfor where  tradeId = BINARY #{tradeId,jdbcType=VARCHAR}
     </select>
     <insert id="insert" parameterType="com.jkcredit.invoice.model.entity.Calculate.NoCarCalculateInfor" >
         insert into t_CalculateInfor (

+ 12 - 12
src/main/resources/mapper/calculateInfor/SefCarCalculateInforMapper.xml

@@ -34,23 +34,23 @@
         from t_SelfCalculateInfor
         where 1 = 1
         <if test="calculateInfor.customId != null and calculateInfor.customId != ''">
-            and BINARY customId = #{calculateInfor.customId}
+            and  customId = BINARY #{calculateInfor.customId}
         </if>
 
         <if test="calculateInfor.companyReferencenum != null and calculateInfor.companyReferencenum != ''">
-            and BINARY companyReferencenum =#{calculateInfor.companyReferencenum}
+            and  companyReferencenum = BINARY #{calculateInfor.companyReferencenum}
         </if>
         <if test="calculateInfor.companyName != null and calculateInfor.companyName != ''">
-            and BINARY companyName LIKE CONCAT('%',#{calculateInfor.companyName},'%')
+            and  companyName LIKE BINARY CONCAT('%',#{calculateInfor.companyName},'%')
         </if>
         <if test="calculateInfor.companyLongName != null and calculateInfor.companyLongName != ''">
-            and BINARY companyLongName LIKE CONCAT('%',#{calculateInfor.companyLongName},'%')
+            and  companyLongName LIKE BINARY CONCAT('%',#{calculateInfor.companyLongName},'%')
         </if>
         <if test="calculateInfor.etcNum != null and calculateInfor.etcNum != ''">
-            and BINARY etcNum = #{calculateInfor.etcNum}
+            and  etcNum = BINARY #{calculateInfor.etcNum}
         </if>
         <if test="calculateInfor.calTime != null and calculateInfor.calTime != ''">
-            and BINARY calTime BETWEEN #{calculateInfor.calTimeStart} and #{calculateInfor.calTimeEnd}
+            and  calTime BETWEEN #{calculateInfor.calTimeStart} and #{calculateInfor.calTimeEnd}
         </if>
         order by id DESC
     </select>
@@ -85,7 +85,7 @@
         select count(1) from (select DISTINCT f.etcNum from t_SelfCalculateInfor f where f.companyNum = companyNum
 
             <if test="etcNum != null and etcNum != ''">
-                and BINARY f.etcNum = #{etcNum}
+                and  f.etcNum = BINARY #{etcNum}
             </if>
             <if test="calTime != null and calTime != ''">
                 and f.calTime BETWEEN #{calTimeStart} and #{calTimeEnd}
@@ -96,7 +96,7 @@
         and t.cardId in (select DISTINCT f.etcNum from t_SelfCalculateInfor f where f.companyNum = k.companyNum
 
             <if test="etcNum != null and etcNum != ''">
-                and BINARY f.etcNum = #{etcNum}
+                and  f.etcNum = BINARY #{etcNum}
             </if>
             <if test="calTime != null and calTime != ''">
                 and f.calTime BETWEEN #{calTimeStart} and #{calTimeEnd}
@@ -116,16 +116,16 @@
         from t_SelfCalculateInfor h
         <where>
             <if test="customId != null and customId != ''">
-                and BINARY customId = #{customId}
+                and  customId = BINARY #{customId}
             </if>
             <if test="companyReferencenum != null and companyReferencenum != ''">
-                and BINARY companyReferencenum =#{companyReferencenum}
+                and  companyReferencenum = BINARY #{companyReferencenum}
             </if>
             <if test="etcNum != null and etcNum != ''">
-                and BINARY etcNum = #{etcNum}
+                and  etcNum = BINARY #{etcNum}
             </if>
             <if test="calTime != null and calTime != ''">
-                and BINARY calTime BETWEEN #{calTimeStart} and #{calTimeEnd}
+                and  calTime BETWEEN #{calTimeStart} and #{calTimeEnd}
             </if>
         </where>
         GROUP by customId,companyNum,companyReferencenum) k

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

@@ -222,7 +222,7 @@
         inter_type = #{interType,jdbcType=INTEGER}
       </if>
     </set>
-    where BINARY car_num = #{carNum,jdbcType=VARCHAR}  and bussiness_type=2
+    where  car_num = BINARY #{carNum,jdbcType=VARCHAR}  and bussiness_type=2
   </update>
   <update id="updateETCByPrimaryKeySelective" parameterType="com.jkcredit.invoice.model.entity.customer.CustomerCarRec">
     update t_customer_carRec
@@ -258,7 +258,7 @@
         inter_type = #{interType,jdbcType=INTEGER}
       </if>
     </set>
-    where BINARY etc_num = #{etcNum,jdbcType=VARCHAR} and bussiness_type=0
+    where  etc_num = BINARY #{etcNum,jdbcType=VARCHAR} and bussiness_type=0
   </update>
   <update id="updateByPrimaryKey" parameterType="com.jkcredit.invoice.model.entity.customer.CustomerCarRec">
     update t_customer_carRec
@@ -274,7 +274,7 @@
       rec_status = #{recStatus,jdbcType=INTEGER},
       fail_reason = #{failReason,jdbcType=VARCHAR},
       inter_type = #{interType,jdbcType=INTEGER}
-    where BINARY car_num = #{carNum,jdbcType=VARCHAR}  and bussiness_type=2
+    where  car_num = BINARY #{carNum,jdbcType=VARCHAR}  and bussiness_type=2
   </update>
 
   <update id="updateETCByPrimaryKey" parameterType="com.jkcredit.invoice.model.entity.customer.CustomerCarRec">
@@ -291,6 +291,6 @@
     rec_status = #{recStatus,jdbcType=INTEGER},
     fail_reason = #{failReason,jdbcType=VARCHAR},
     inter_type = #{interType,jdbcType=INTEGER}
-    where BINARY etc_num = #{etcNum,jdbcType=VARCHAR} and bussiness_type=0
+    where  etc_num = BINARY #{etcNum,jdbcType=VARCHAR} and bussiness_type=0
   </update>
 </mapper>

+ 8 - 8
src/main/resources/mapper/customer/CustomerMapper.xml

@@ -53,13 +53,13 @@
      from t_customer
     <where>
       <if test="customer.customerName != null and customer.customerName != ''">
-        and BINARY customer_name = #{customer.customerName}
+        and  customer_name = BINARY #{customer.customerName}
       </if>
       <if test="customer.company != null and customer.company != ''">
-        and BINARY company LIKE CONCAT('%',#{customer.company},'%')
+        and  company LIKE BINARY CONCAT('%',#{customer.company},'%')
       </if>
       <if test="customer.subCompany != null and customer.subCompany != ''">
-        and EXISTS (select 1 from t_customer_rec t where t.customerName = customer_name and t.company_Name LIKE CONCAT('%',#{customer.subCompany},'%'))
+        and EXISTS (select 1 from t_customer_rec t where t.customerName = BINARY customer_name and t.company_Name LIKE BINARY CONCAT('%',#{customer.subCompany},'%'))
       </if>
     </where>
     order by first_sign desc
@@ -70,10 +70,10 @@
     from t_customer
     <where>
       <if test="customer.customerName != null and customer.customerName != ''">
-        and BINARY customer_name = #{customer.customerName}
+        and  customer_name = BINARY #{customer.customerName}
       </if>
       <if test="customer.company != null and customer.company != ''">
-        and BINARY company LIKE CONCAT('%',#{customer.company},'%')
+        and  company LIKE BINARY CONCAT('%',#{customer.company},'%')
       </if>
       <if test="customer.moneyUpper != null and customer.moneyUpper != ''">
         and  #{customer.moneyUpper}>=account_balance
@@ -94,7 +94,7 @@
     select
     <include refid="Base_Column_List" />
     from t_customer
-    where BINARY customer_name = #{customerName,jdbcType=VARCHAR}
+    where  customer_name = BINARY #{customerName,jdbcType=VARCHAR}
   </select>
   <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer" >
     delete from t_customer
@@ -263,8 +263,8 @@
     select
     <include refid="Base_Column_List_app_secret" />
     from t_customer
-    where BINARY customer_name = #{customerName,jdbcType=VARCHAR}
-          and BINARY app_secret = #{appSecret,jdbcType=VARCHAR}
+    where  customer_name = BINARY #{customerName,jdbcType=VARCHAR}
+          and  app_secret = BINARY #{appSecret,jdbcType=VARCHAR}
   </select>
 
 </mapper>

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

@@ -27,16 +27,16 @@
         from t_cusomerOper
         <where>
             <if test="customerOper.customerName != null and customerOper.customerName != ''">
-                AND BINARY customerName = #{customerOper.customerName}
+                AND  customerName = BINARY #{customerOper.customerName}
             </if>
             <if test="customerOper.company != null and customerOper.company != ''">
-                AND BINARY company LIKE CONCAT('%',#{customerOper.company},'%')
+                AND  company LIKE BINARY CONCAT('%',#{customerOper.company},'%')
             </if>
             <if test="customerOper.batchNumber != null and customerOper.batchNumber != ''">
-                AND BINARY batchNumber LIKE CONCAT('%',#{customerOper.batchNumber},'%')
+                AND  batchNumber LIKE CONCAT('%',#{customerOper.batchNumber},'%')
             </if>
             <if test="customerOper.operType != null and customerOper.operType != ''">
-                AND  BINARY operType = #{customerOper.operType}
+                AND   operType = #{customerOper.operType}
             </if>
         </where>
          order by batchNumber desc

+ 19 - 21
src/main/resources/mapper/invoice/BillInvoiceMapper.xml

@@ -76,16 +76,16 @@
         from t_billInvoice
         <where>
             <if test="billInvoice.companyName != null and billInvoice.companyName != ''">
-                and BINARY companyName =#{billInvoice.companyName}
+                and  companyName = BINARY #{billInvoice.companyName}
             </if>
             <if test="billInvoice.waybillNum != null and billInvoice.waybillNum != ''">
                 and  instr(CONCAT(',',#{billInvoice.waybillNum},','),CONCAT(',',waybillNum,','))>0
             </if>
             <if test="billInvoice.buyerTaxpayerCode != null and billInvoice.buyerTaxpayerCode != ''">
-                and BINARY buyerTaxpayerCode = #{billInvoice.buyerTaxpayerCode}
+                and  buyerTaxpayerCode = BINARY #{billInvoice.buyerTaxpayerCode}
             </if>
             <if test="billInvoice.plateNum != null and billInvoice.plateNum != ''">
-                and BINARY plateNum = #{billInvoice.plateNum}
+                and  plateNum = BINARY #{billInvoice.plateNum}
             </if>
             <if test="billInvoice.invoiceCode != null and billInvoice.invoiceCode != ''">
                 and instr(CONCAT(',',#{billInvoice.invoiceCode},','),CONCAT(',',invoiceCode,','))>0
@@ -96,7 +96,7 @@
             <if test="billInvoice.invoiceMakeStart != null and billInvoice.invoiceMakeStart != ''">
                 and invoiceMakeTime BETWEEN #{billInvoice.invoiceMakeStart} and #{billInvoice.invoiceMakeEnd}
             </if>
-            <if test="billInvoice.calculateTimeStart != null and billInvoice.calculateTimeStart != ''">
+            <if test="billInvoice.calculateTimeStart != null and billInvoice.calculateTimeStart != ''"> and
                 calculateTime BETWEEN #{billInvoice.calculateTimeStart} and #{billInvoice.calculateTimeEnd}
 
             </if>
@@ -111,13 +111,13 @@
         from t_billInvoice
         <where>
             <if test="waybillNum != null and waybillNum != ''">
-                and BINARY waybillNum = #{waybillNum}
+                and  waybillNum = BINARY #{waybillNum}
             </if>
             <if test="invoiceCode != null and invoiceCode != ''">
-                and BINARY invoiceCode = #{invoiceCode}
+                and  invoiceCode = BINARY #{invoiceCode}
             </if>
             <if test="invoiceNum != null and invoiceNum != ''">
-                and BINARY invoiceNum = #{invoiceNum}
+                and  invoiceNum = BINARY #{invoiceNum}
             </if>
         </where>
     </select>
@@ -234,23 +234,23 @@
             buyerName		= #{buyerName,jdbcType=VARCHAR},
             buyerTaxpayerCode = #{buyerTaxpayerCode,jdbcType=VARCHAR},
             calculateTime = #{calculateTime,jdbcType=VARCHAR}
-        where BINARY invoiceNum = #{invoiceNum,jdbcType=VARCHAR}
+        where  invoiceNum = BINARY #{invoiceNum,jdbcType=VARCHAR}
     </update>
     <select id="selectByBillNum" resultMap="BaseResultMap" parameterType="java.lang.String" >
         select
         <include refid="baseSql" />,calculateTime
         from t_billInvoice
-        where BINARY waybillNum = #{waybillNum,jdbcType=VARCHAR}
+        where  waybillNum = BINARY #{waybillNum,jdbcType=VARCHAR}
     </select>
     <select id="selectByInvoiceNum" resultMap="BaseResultMap" parameterType="java.lang.String" >
         select
         <include refid="baseSql" />,calculateTime
         from t_billInvoice
-        where BINARY invoiceNum = #{invoiceNum,jdbcType=VARCHAR}
+        where  invoiceNum = BINARY #{invoiceNum,jdbcType=VARCHAR}
     </select>
 
     <delete id="deleteByBillNum" parameterType="java.lang.String">
-         DELETE  from t_billInvoice WHERE BINARY waybillNum = #{waybillNum,jdbcType=VARCHAR}
+         DELETE  from t_billInvoice WHERE  waybillNum = BINARY #{waybillNum,jdbcType=VARCHAR}
     </delete>
 
     <resultMap id="staticResultMap" type="java.util.Map">
@@ -266,27 +266,25 @@
         from t_billInvoice
         <where>
             <if test="billInvoice.companyName != null and billInvoice.companyName != ''">
-                and BINARY companyName LIKE CONCAT('%',#{billInvoice.companyName},'%')
+                and  companyName = BINARY #{billInvoice.companyName}
             </if>
             <if test="billInvoice.waybillNum != null and billInvoice.waybillNum != ''">
-                and BINARY waybillNum = #{billInvoice.waybillNum}
+                and  waybillNum = BINARY #{billInvoice.waybillNum}
             </if>
             <if test="billInvoice.plateNum != null and billInvoice.plateNum != ''">
-                and BINARY plateNum = #{billInvoice.plateNum}
+                and  plateNum = BINARY #{billInvoice.plateNum}
             </if>
             <if test="billInvoice.invoiceCode != null and billInvoice.invoiceCode != ''">
-                and BINARY invoiceCode = #{billInvoice.invoiceCode}
+                and  invoiceCode = BINARY #{billInvoice.invoiceCode}
             </if>
             <if test="billInvoice.invoiceNum != null and billInvoice.invoiceNum != ''">
-                and BINARY invoiceNum = #{billInvoice.invoiceNum}
+                and  invoiceNum = BINARY #{billInvoice.invoiceNum}
             </if>
             <if test="billInvoice.invoiceMakeStart != null and billInvoice.invoiceMakeStart != ''">
                 and invoiceMakeTime BETWEEN #{billInvoice.invoiceMakeStart} and #{billInvoice.invoiceMakeEnd}
             </if>
-            <if test="billInvoice.calculateTimeStart != null and billInvoice.calculateTimeStart != ''">
-                and exists(SELECT  1 from t_CalculateInfor g where g.tradeId = transactionId and
-                g.calculateTime BETWEEN #{billInvoice.calculateTimeStart} and #{billInvoice.calculateTimeEnd}
-                )
+            <if test="billInvoice.calculateTimeStart != null and billInvoice.calculateTimeStart != ''"> and
+                calculateTime BETWEEN #{billInvoice.calculateTimeStart} and #{billInvoice.calculateTimeEnd}
 
             </if>
         </where>
@@ -296,6 +294,6 @@
         select
         <include refid="baseSql" />
         from t_billInvoice
-        where BINARY customerName = #{customerName,jdbcType=VARCHAR}
+        where  customerName = BINARY #{customerName,jdbcType=VARCHAR}
     </select>
 </mapper>

+ 7 - 7
src/main/resources/mapper/waybill/NoCarWaybillImportMapper.xml

@@ -57,19 +57,19 @@
         from t_waybill_Import
         <where>
             <if test="noCarWayBill.companyName != null and noCarWayBill.companyName != ''">
-                and BINARY companyName = #{noCarWayBill.companyName}
+                and  companyName = BINARY #{noCarWayBill.companyName}
             </if>
             <if test="noCarWayBill.billNum != null and noCarWayBill.billNum != ''">
-                and BINARY billNum = #{noCarWayBill.billNum}
+                and  billNum = BINARY #{noCarWayBill.billNum}
             </if>
             <if test="noCarWayBill.plateNum != null and noCarWayBill.plateNum != ''">
-                and BINARY plateNum = #{noCarWayBill.plateNum}
+                and  plateNum = BINARY #{noCarWayBill.plateNum}
             </if>
             <if test="noCarWayBill.taxplayerCode != null and noCarWayBill.taxplayerCode != ''">
-                and BINARY taxplayerCode = #{noCarWayBill.taxplayerCode}
+                and  taxplayerCode = BINARY #{noCarWayBill.taxplayerCode}
             </if>
             <if test="noCarWayBill.billwayStatus != null and noCarWayBill.billwayStatus != ''">
-                and BINARY billwayStatus = #{noCarWayBill.billwayStatus}
+                and  billwayStatus = BINARY #{noCarWayBill.billwayStatus}
             </if>
             <if test="noCarWayBill.startBegin != null and noCarWayBill.startBegin != ''">
                 and intfaceStartTime BETWEEN #{noCarWayBill.startBegin} and #{noCarWayBill.startEnd}
@@ -78,10 +78,10 @@
                 and interfaceEndTime BETWEEN #{noCarWayBill.endBegin} and #{noCarWayBill.endEnd}
             </if>
             <if test="noCarWayBill.batchNum != null and noCarWayBill.batchNum != ''">
-                and BINARY batchNumber = #{noCarWayBill.batchNum}
+                and  batchNumber = BINARY #{noCarWayBill.batchNum}
             </if>
             <if test="noCarWayBill.batchNumEnd != null and noCarWayBill.batchNumEnd != ''">
-                and BINARY batchNumEnd = #{noCarWayBill.batchNumEnd}
+                and  batchNumEnd = BINARY #{noCarWayBill.batchNumEnd}
             </if>
             <if test="noCarWayBill.success == 1">
                 and billwayStatus in(1,2,3,4)

+ 12 - 12
src/main/resources/mapper/waybill/NoCarWaybillMapper.xml

@@ -62,13 +62,13 @@
             and hisFlag = #{noCarWayBill.hisFlag,jdbcType=INTEGER}
             </if>
             <if test="noCarWayBill.companyName != null and noCarWayBill.companyName != ''">
-                and BINARY companyName LIKE CONCAT('%',#{noCarWayBill.companyName},'%')
+                and  companyName = BINARY #{noCarWayBill.companyName}
             </if>
             <if test="noCarWayBill.billNum != null and noCarWayBill.billNum != ''">
                 and   instr(CONCAT(',',#{noCarWayBill.billNum},','),CONCAT(',',billNum,','))>0
             </if>
             <if test="noCarWayBill.taxplayerCode != null and noCarWayBill.taxplayerCode != ''">
-                and BINARY taxplayerCode = #{noCarWayBill.taxplayerCode}
+                and  taxplayerCode = BINARY #{noCarWayBill.taxplayerCode}
             </if>
             <if test="noCarWayBill.billwayStatus != null and noCarWayBill.billwayStatus != ''">
                 and billwayStatus = #{noCarWayBill.billwayStatus}
@@ -80,13 +80,13 @@
                 and interfaceEndTime BETWEEN #{noCarWayBill.endBegin} and #{noCarWayBill.endEnd}
             </if>
             <if test="noCarWayBill.batchNum != null and noCarWayBill.batchNum != ''">
-                and BINARY batchNumber = #{noCarWayBill.batchNum}
+                and  batchNumber = #{noCarWayBill.batchNum}
             </if>
             <if test="noCarWayBill.plateNum != null and noCarWayBill.plateNum != ''">
-                and BINARY plateNum = #{noCarWayBill.plateNum}
+                and  plateNum = BINARY #{noCarWayBill.plateNum}
             </if>
             <if test="noCarWayBill.batchNumEnd != null and noCarWayBill.batchNumEnd != ''">
-                and BINARY batchNumEnd = #{noCarWayBill.batchNumEnd}
+                and  batchNumEnd = #{noCarWayBill.batchNumEnd}
             </if>
             <if test="noCarWayBill.success == 1">
                 and billwayStatus in(1,2,3,4)
@@ -103,16 +103,16 @@
         from t_waybill_no
         <where>
             <if test="noCarWayBill.companyName != null and noCarWayBill.companyName != ''">
-                and BINARY companyName = #{noCarWayBill.companyName}
+                and  companyName = BINARY #{noCarWayBill.companyName}
             </if>
             <if test="noCarWayBill.billNum != null and noCarWayBill.billNum != ''">
-                and BINARY billNum = #{noCarWayBill.billNum}
+                and  billNum = BINARY #{noCarWayBill.billNum}
             </if>
             <if test="noCarWayBill.taxplayerCode != null and noCarWayBill.taxplayerCode != ''">
-                and BINARY taxplayerCode = #{noCarWayBill.taxplayerCode}
+                and  taxplayerCode = BINARY #{noCarWayBill.taxplayerCode}
             </if>
             <if test="noCarWayBill.billwayStatus != null and noCarWayBill.billwayStatus != ''">
-                and BINARY billwayStatus = #{noCarWayBill.billwayStatus}
+                and  billwayStatus = BINARY #{noCarWayBill.billwayStatus}
             </if>
             <if test="noCarWayBill.startBegin != null and noCarWayBill.startBegin != ''">
                 and intfaceStartTime BETWEEN #{noCarWayBill.startBegin} and #{noCarWayBill.startEnd}
@@ -206,13 +206,13 @@
         companyTel = #{companyTel,jdbcType=VARCHAR},
         companyNum = #{companyNum,jdbcType=VARCHAR},
         failReason = #{failReason,jdbcType=VARCHAR}
-        where BINARY billNum = #{billNum,jdbcType=VARCHAR}
+        where  billNum = BINARY #{billNum,jdbcType=VARCHAR}
     </update>
     <select id="selectByBillNum" resultMap="BaseResultMap" parameterType="java.lang.String" >
         select
         <include refid="baseSql" />
         from t_waybill_no
-        where BINARY billNum = #{billNum,jdbcType=VARCHAR}
+        where  billNum = BINARY #{billNum,jdbcType=VARCHAR}
     </select>
     <select id="selectByHisFlagAndBillStatus" resultMap="BaseResultMap" parameterType="com.jkcredit.invoice.model.entity.waybill.NoCarWayBill" >
         select
@@ -227,7 +227,7 @@
         select
         <include refid="baseSql" />
         from t_waybill_no
-        where BINARY customerName = #{customerName,jdbcType=VARCHAR}
+        where  customerName = BINARY #{customerName,jdbcType=VARCHAR}
     </select>