Commit 712ac782 authored by 徐州's avatar 徐州

修改漏掉的sql

parent 5f0d0636
......@@ -949,7 +949,11 @@ public class UserEntity extends DomainObject implements Cloneable {
"CreateTime", getCreateTime()).append("CreateIp", getCreateIp()).append("UpdateUserid",
getUpdateUserid()).append(
"UpdateUsername", getUpdateUsername()).append("UpdateTime", getUpdateTime()).append("UpdateIp",
getUpdateIp()).toString();
getUpdateIp()).append(
"showMobile" + getShowMobile()
)
.toString();
}
/**
......
......@@ -137,6 +137,8 @@ public class LoginController extends BaseController {
request.getSession().setAttribute(SessionConstants.THREAD_USERID_KEY, userEntity.getId());
request.getSession().setAttribute(SessionConstants.THREAD_USERNAME_KEY, userEntity.getName());
request.getSession().setAttribute(SessionConstants.SESSION_CITY_KEY, dept.getDescripition());
logger.error(userEntity.toString());
}
/**
......
......@@ -652,6 +652,11 @@
identityType $searchFilters.identityType.operation$ #searchFilters.identityType.value#
]]>
</isNotEmpty>
<isNotEmpty prepend="AND" property="searchFilters.showMobile">
<![CDATA[
showMobile $searchFilters.showMobile.operation$ #searchFilters.showMobile.value#
]]>
</isNotEmpty>
</isNotNull>
</dynamic>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment