|
@@ -239,13 +239,13 @@
|
|
|
<if test="endDate != null">
|
|
|
<![CDATA[ AND mbi.leave_hospital_date < #{endDate}]]>
|
|
|
</if>
|
|
|
- <if test="creatStatus != null and creatStatus == '1'">
|
|
|
+ <if test="creatStatus != null and creatStatus == '1'.toString()">
|
|
|
AND mci.job_create_time is not null
|
|
|
<if test="jobType != null and jobType != ''">
|
|
|
AND mci.job_type=#{jobType}
|
|
|
</if>
|
|
|
</if>
|
|
|
- <if test="creatStatus != null and creatStatus == 0">
|
|
|
+ <if test="creatStatus != null and creatStatus == '0'.toString()">
|
|
|
AND mci.job_create_time is null
|
|
|
</if>
|
|
|
<if test="name != null and name != ''">
|