...
|
...
|
@@ -19,7 +19,7 @@ |
|
|
count(1)
|
|
|
from work_job
|
|
|
where 1=1
|
|
|
<if test="params.id != null" >
|
|
|
<if test="params.id != null && params.id != '' " >
|
|
|
and work_id = #{params.id}
|
|
|
</if>
|
|
|
</select>
|
...
|
...
|
@@ -29,7 +29,7 @@ |
|
|
<include refid="Base_Column_List" />
|
|
|
from work_job
|
|
|
where 1=1
|
|
|
<if test="params.id != null" >
|
|
|
<if test="params.id != null && params.id != '' " >
|
|
|
and work_id = #{params.id}
|
|
|
</if>
|
|
|
order by create_time desc
|
...
|
...
|
|