|
|
@ -301,7 +301,7 @@ |
|
|
<result column="buDesc" property="buName"/> |
|
|
<result column="buDesc" property="buName"/> |
|
|
<result column="experiment_type" property="experimentType"/> |
|
|
<result column="experiment_type" property="experimentType"/> |
|
|
<result column="title" property="title"/> |
|
|
<result column="title" property="title"/> |
|
|
<result column="creator_name" property="creatorName"/> |
|
|
|
|
|
|
|
|
<result column="project_leader" property="projectLeader"/> |
|
|
<result column="status" property="status"/> |
|
|
<result column="status" property="status"/> |
|
|
<result column="create_time" property="createTime"/> |
|
|
<result column="create_time" property="createTime"/> |
|
|
<result column="submit_time" property="submitTime"/> |
|
|
<result column="submit_time" property="submitTime"/> |
|
|
@ -322,7 +322,7 @@ |
|
|
dbo.get_bu_desc(a.site, a.bu_no) AS buDesc, |
|
|
dbo.get_bu_desc(a.site, a.bu_no) AS buDesc, |
|
|
a.experiment_type, |
|
|
a.experiment_type, |
|
|
a.title, |
|
|
a.title, |
|
|
a.creator_name, |
|
|
|
|
|
|
|
|
a.project_leader, |
|
|
a.status, |
|
|
a.status, |
|
|
a.create_time, |
|
|
a.create_time, |
|
|
a.submit_time, |
|
|
a.submit_time, |
|
|
@ -420,8 +420,8 @@ |
|
|
<if test="data.experimentType != null and data.experimentType != ''"> |
|
|
<if test="data.experimentType != null and data.experimentType != ''"> |
|
|
AND a.experiment_type = #{data.experimentType} |
|
|
AND a.experiment_type = #{data.experimentType} |
|
|
</if> |
|
|
</if> |
|
|
<if test="data.creatorName != null and data.creatorName != ''"> |
|
|
|
|
|
AND a.creator_name LIKE '%' + #{data.creatorName} + '%' |
|
|
|
|
|
|
|
|
<if test="data.projectLeader != null and data.projectLeader != ''"> |
|
|
|
|
|
AND a.project_leader LIKE '%' + #{data.projectLeader} + '%' |
|
|
</if> |
|
|
</if> |
|
|
<if test="data.submitStartDate != null"> |
|
|
<if test="data.submitStartDate != null"> |
|
|
AND CAST(a.submit_time AS DATE) >= #{data.submitStartDate} |
|
|
AND CAST(a.submit_time AS DATE) >= #{data.submitStartDate} |
|
|
|