|
@@ -83,6 +83,10 @@
|
|
<if test="projectId != null and projectId != ''">
|
|
<if test="projectId != null and projectId != ''">
|
|
AND a.project_id like concat('%',#{projectId},'%')
|
|
AND a.project_id like concat('%',#{projectId},'%')
|
|
</if>
|
|
</if>
|
|
|
|
+ <!--父项目id-->
|
|
|
|
+ <if test="parentProId != null and parentProId != ''">
|
|
|
|
+ AND a.parent_pro_id = #{parentProId}
|
|
|
|
+ </if>
|
|
<!--项目名称-->
|
|
<!--项目名称-->
|
|
<if test="projectName != null and projectName != ''">
|
|
<if test="projectName != null and projectName != ''">
|
|
AND a.project_name like concat(concat('%',#{projectName}),'%')
|
|
AND a.project_name like concat(concat('%',#{projectName}),'%')
|
|
@@ -123,6 +127,10 @@
|
|
<if test="projectId != null and projectId != ''">
|
|
<if test="projectId != null and projectId != ''">
|
|
AND a.project_id like concat('%',#{projectId},'%')
|
|
AND a.project_id like concat('%',#{projectId},'%')
|
|
</if>
|
|
</if>
|
|
|
|
+ <!--父项目id-->
|
|
|
|
+ <if test="parentProId != null and parentProId != ''">
|
|
|
|
+ AND a.parent_pro_id = #{parentProId}
|
|
|
|
+ </if>
|
|
<!--项目名称-->
|
|
<!--项目名称-->
|
|
<if test="projectName != null and projectName != ''">
|
|
<if test="projectName != null and projectName != ''">
|
|
AND a.project_name like concat(concat('%',#{projectName}),'%')
|
|
AND a.project_name like concat(concat('%',#{projectName}),'%')
|