|
|
@ -208,25 +208,21 @@ order by create_date desc |
|
|
|
<where> |
|
|
|
<include refid="selectAuthSql"/> |
|
|
|
<if test="info.projectName!=null and info.projectName!=''"> |
|
|
|
<bind name="tempStr" value="'%' + info.projectName + '%'" /> |
|
|
|
and u.project_name like #{tempStr} |
|
|
|
<bind name="projectName" value="'%' + info.projectName + '%'" /> |
|
|
|
and u.project_name like #{projectName} |
|
|
|
</if> |
|
|
|
|
|
|
|
<if test="info.adminDivision!=null and info.adminDivision!=''"> |
|
|
|
<bind name="tempStr" value="'%' + info.adminDivision + '%'" /> |
|
|
|
and u.admin_division like #{tempStr} |
|
|
|
</if> |
|
|
|
<if test="info.dutyWorkplace!=null and info.dutyWorkplace!=''"> |
|
|
|
<bind name="tempStr" value="'%' + info.dutyWorkplace + '%'" /> |
|
|
|
and u.duty_workplace like #{tempStr} |
|
|
|
<bind name="adminDivision" value="'%' + info.adminDivision + '%'" /> |
|
|
|
and u.admin_division like #{adminDivision} |
|
|
|
</if> |
|
|
|
<if test="info.workplaceProperties!=null and info.workplaceProperties!=''"> |
|
|
|
<bind name="tempStr" value="'%' + info.workplaceProperties + '%'" /> |
|
|
|
and u.workplace_properties like #{tempStr} |
|
|
|
<bind name="workplaceProperties" value="'%' + info.workplaceProperties + '%'" /> |
|
|
|
and u.workplace_properties like #{workplaceProperties} |
|
|
|
</if> |
|
|
|
<if test="info.dutyWorkplace!=null and info.dutyWorkplace!=''"> |
|
|
|
<bind name="tempStr" value="'%' + info.dutyWorkplace + '%'" /> |
|
|
|
and u.duty_workplace like #{tempStr} |
|
|
|
<bind name="dutyWorkplace" value="'%' + info.dutyWorkplace + '%'" /> |
|
|
|
and u.duty_workplace like #{dutyWorkplace} |
|
|
|
</if> |
|
|
|
<if test="info.reformName!=null and info.reformName!=''"> |
|
|
|
and u.reform_name = #{info.reformName} |
|
|
|