Commit b06d0451 authored by hongguangwu's avatar hongguangwu

1.7.24 - 身份证有效期止的起止

parent faf57420
...@@ -250,10 +250,10 @@ ...@@ -250,10 +250,10 @@
<sql id="tEmployeeProject_where"> <sql id="tEmployeeProject_where">
<if test="tEmployeeProject != null"> <if test="tEmployeeProject != null">
<if test="tEmployeeProject.validityEndStart != null and tEmployeeProject.validityEndStart.trim() != ''"> <if test="tEmployeeProject.validityEndStart != null ">
AND b.VALIDITY_END <![CDATA[ >= ]]> #{tEmployeeProject.validityEndStart} AND b.VALIDITY_END <![CDATA[ >= ]]> #{tEmployeeProject.validityEndStart}
</if> </if>
<if test="tEmployeeProject.validityEndEnd != null and tEmployeeProject.validityEndEnd.trim() != ''"> <if test="tEmployeeProject.validityEndEnd != null ">
AND b.VALIDITY_END <![CDATA[ <= ]]> #{tEmployeeProject.validityEndEnd} AND b.VALIDITY_END <![CDATA[ <= ]]> #{tEmployeeProject.validityEndEnd}
</if> </if>
...@@ -458,10 +458,10 @@ ...@@ -458,10 +458,10 @@
<sql id="exportTEmployeeProject_where"> <sql id="exportTEmployeeProject_where">
<if test="tEmployeeProject != null"> <if test="tEmployeeProject != null">
<if test="tEmployeeProject.validityEndStart != null and tEmployeeProject.validityEndStart.trim() != ''"> <if test="tEmployeeProject.validityEndStart != null ">
AND b.VALIDITY_END <![CDATA[ >= ]]> #{tEmployeeProject.validityEndStart} AND b.VALIDITY_END <![CDATA[ >= ]]> #{tEmployeeProject.validityEndStart}
</if> </if>
<if test="tEmployeeProject.validityEndEnd != null and tEmployeeProject.validityEndEnd.trim() != ''"> <if test="tEmployeeProject.validityEndEnd != null ">
AND b.VALIDITY_END <![CDATA[ <= ]]> #{tEmployeeProject.validityEndEnd} AND b.VALIDITY_END <![CDATA[ <= ]]> #{tEmployeeProject.validityEndEnd}
</if> </if>
......
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