Compare commits
6 Commits
e948b53e89
...
21f522cd1a
| Author | SHA1 | Date | |
|---|---|---|---|
| 21f522cd1a | |||
| 679aa5f0c1 | |||
| 99c17f1ef1 | |||
| 563699a527 | |||
| 0f1c7b02fe | |||
| 8f0c7a020c |
@@ -111,6 +111,14 @@ public class ZtProjectQo extends BaseQo {
|
|||||||
private String spec;
|
private String spec;
|
||||||
|
|
||||||
private String bugType;
|
private String bugType;
|
||||||
|
/**
|
||||||
|
* 测试人员
|
||||||
|
*/
|
||||||
|
private String testUser;
|
||||||
|
/**
|
||||||
|
* 产品人员
|
||||||
|
*/
|
||||||
|
private String productUser;
|
||||||
|
|
||||||
private String account;
|
private String account;
|
||||||
//1 延期 2不延期
|
//1 延期 2不延期
|
||||||
|
|||||||
@@ -219,6 +219,13 @@
|
|||||||
and s.title like concat('%', #{qo.title}, '%')
|
and s.title like concat('%', #{qo.title}, '%')
|
||||||
</if>
|
</if>
|
||||||
|
|
||||||
|
<if test="qo.testUser != null and qo.testUser != '' ">
|
||||||
|
and s.test_user like concat('%', #{qo.testUser}, '%')
|
||||||
|
</if>
|
||||||
|
<if test="qo.productUser != null and qo.productUser != '' ">
|
||||||
|
and s.product_user like concat('%', #{qo.productUser}, '%')
|
||||||
|
</if>
|
||||||
|
|
||||||
<if test="qo.id != null ">
|
<if test="qo.id != null ">
|
||||||
and s.id = #{qo.id}
|
and s.id = #{qo.id}
|
||||||
</if>
|
</if>
|
||||||
@@ -276,6 +283,8 @@
|
|||||||
</if>
|
</if>
|
||||||
|
|
||||||
group by s.id
|
group by s.id
|
||||||
|
|
||||||
|
|
||||||
<choose>
|
<choose>
|
||||||
<when test="qo.orderName != '' and qo.orderName != null ">
|
<when test="qo.orderName != '' and qo.orderName != null ">
|
||||||
<choose>
|
<choose>
|
||||||
@@ -380,6 +389,24 @@
|
|||||||
WHERE 1=1
|
WHERE 1=1
|
||||||
|
|
||||||
|
|
||||||
|
<!-- <if test="qo.startDate !=null">-->
|
||||||
|
<!-- and s.openedDate <![CDATA[>=]]> #{qo.startDate}-->
|
||||||
|
<!-- </if>-->
|
||||||
|
<!-- <if test="qo.endDate !=null">-->
|
||||||
|
<!-- and s.openedDate <![CDATA[<=]]> #{qo.endDate}-->
|
||||||
|
<!-- </if>-->
|
||||||
|
<!-- <if test="qo.startDate !=null">-->
|
||||||
|
<!-- and s.openedDate <![CDATA[>=]]> #{qo.startDate}-->
|
||||||
|
<!-- </if>-->
|
||||||
|
<!-- <if test="qo.endDate !=null">-->
|
||||||
|
<!-- and s.openedDate <![CDATA[<=]]> #{qo.endDate}-->
|
||||||
|
<!-- </if>-->
|
||||||
|
<if test="qo.testUser != null and qo.testUser != '' ">
|
||||||
|
and s.test_user like concat('%', #{qo.testUser}, '%')
|
||||||
|
</if>
|
||||||
|
<if test="qo.productUser != null and qo.productUser != '' ">
|
||||||
|
and s.product_user like concat('%', #{qo.productUser}, '%')
|
||||||
|
</if>
|
||||||
<!-- <if test="qo.startDate !=null">-->
|
<!-- <if test="qo.startDate !=null">-->
|
||||||
<!-- and s.openedDate <![CDATA[>=]]> #{qo.startDate}-->
|
<!-- and s.openedDate <![CDATA[>=]]> #{qo.startDate}-->
|
||||||
<!-- </if>-->
|
<!-- </if>-->
|
||||||
@@ -588,6 +615,7 @@
|
|||||||
|
|
||||||
</if>
|
</if>
|
||||||
|
|
||||||
|
|
||||||
group by s.id
|
group by s.id
|
||||||
|
|
||||||
<choose>
|
<choose>
|
||||||
@@ -901,7 +929,12 @@
|
|||||||
WHERE 1=1
|
WHERE 1=1
|
||||||
|
|
||||||
|
|
||||||
|
<if test="qo.testUser != null and qo.testUser != '' ">
|
||||||
|
and s.test_user like concat('%', #{qo.testUser}, '%')
|
||||||
|
</if>
|
||||||
|
<if test="qo.productUser != null and qo.productUser != '' ">
|
||||||
|
and s.product_user like concat('%', #{qo.productUser}, '%')
|
||||||
|
</if>
|
||||||
|
|
||||||
<if test="qo.pri != null and qo.pri != '' ">
|
<if test="qo.pri != null and qo.pri != '' ">
|
||||||
and s.pri = #{qo.pri}
|
and s.pri = #{qo.pri}
|
||||||
|
|||||||
Reference in New Issue
Block a user