|
@@ -446,6 +446,9 @@
|
|
|
<if test="endDate !=null">
|
|
|
AND a.create_date < #{endDate}
|
|
|
</if>
|
|
|
+ <if test="attachmentProjectSort !=null and attachmentProjectSort != ''">
|
|
|
+ AND a.attachment_project_sort = #{attachmentProjectSort}
|
|
|
+ </if>
|
|
|
<if test="projectType !=null and projectType !=''">
|
|
|
and project_type= #{projectType}
|
|
|
</if>
|
|
@@ -646,6 +649,9 @@
|
|
|
<if test="beginDate !=null">
|
|
|
AND a.create_date >= #{beginDate}
|
|
|
</if>
|
|
|
+ <if test="attachmentProjectSort !=null and attachmentProjectSort != ''">
|
|
|
+ AND a.attachment_project_sort = #{attachmentProjectSort}
|
|
|
+ </if>
|
|
|
<if test="endDate !=null">
|
|
|
AND a.create_date < #{endDate}
|
|
|
</if>
|
|
@@ -776,6 +782,9 @@
|
|
|
<if test="endDate !=null">
|
|
|
AND a.create_date < #{endDate}
|
|
|
</if>
|
|
|
+ <if test="attachmentProjectSort !=null and attachmentProjectSort != ''">
|
|
|
+ AND a.attachment_project_sort = #{attachmentProjectSort}
|
|
|
+ </if>
|
|
|
<if test="projectType !=null and projectType !=''">
|
|
|
and project_type= #{projectType}
|
|
|
</if>
|