|
@@ -33,6 +33,15 @@
|
|
|
<where>
|
|
|
a.del_flag = #{DEL_FLAG_NORMAL}
|
|
|
${dataScope}
|
|
|
+ <if test="projectName != null and projectName != ''">
|
|
|
+ AND a.projectName = #{projectName}
|
|
|
+ </if>
|
|
|
+ <if test="projectNumber != null and projectNumber != ''">
|
|
|
+ AND a.projectNumber = #{projectNumber}
|
|
|
+ </if>
|
|
|
+ <if test="projectDate != null and projectDate != ''">
|
|
|
+ AND a.projectDate = #{projectDate}
|
|
|
+ </if>
|
|
|
</where>
|
|
|
<choose>
|
|
|
<when test="page !=null and page.orderBy != null and page.orderBy != ''">
|