Commit 7be2978d by java-温文海

申请单管理

parent bbf4d213
......@@ -2,7 +2,7 @@
db.table.prefix=foc_
jdbc.type=mysql
jdbc.driver.class=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://106.75.105.96:5508/jd_foc?useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull
jdbc.url=jdbc:mysql://81.69.44.115:5508/jd_foc?useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull
jdbc.username=sms_develop
jdbc.password=Develop2018!@#
#\u521d\u59cb\u5316\u8fde\u63a5
......
......@@ -56,8 +56,21 @@
AND a.verif_no LIKE CONCAT('%', #{verifNo}, '%')
</if>
<if test="verifStatus != null and verifStatus != ''">
AND a.verif_status = #{verifStatus}
<choose>
<when test="verifStatus == '01'">
AND (a.verif_status = '01'
or a.verif_status = '03')
</when>
<when test="verifStatus == '00'">
AND a.verif_status = '00'
</when>
<when test="verifStatus =='02'">
AND a.verif_status = '02'
</when>
</choose>
</if>
<if test="arrIataList != null ">
AND (a.id in (
SELECT id FROM foc_airline_verify where arrIata in
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment