Commit 31967a74 authored by 李秀明's avatar 李秀明

fix(jcs): 驻站消防员接口bizOrgCode取值错误

parent d03c7438
...@@ -196,7 +196,7 @@ public class SignController extends BaseController { ...@@ -196,7 +196,7 @@ public class SignController extends BaseController {
ReginParams reginParam = JSON.parseObject(redisUtils.get(RedisKey.buildReginKey(RequestContext.getExeUserId(), RequestContext.getToken())).toString(), ReginParams.class); ReginParams reginParam = JSON.parseObject(redisUtils.get(RedisKey.buildReginKey(RequestContext.getExeUserId(), RequestContext.getToken())).toString(), ReginParams.class);
String bizOrgCode = null; String bizOrgCode = null;
if(null != reginParam) { if(null != reginParam) {
bizOrgCode = reginParam.getPersonIdentity().getBizOrgCode(); bizOrgCode = reginParam.getPersonIdentity().getCompanyBizOrgCode();
} }
dto.setBizOrgCode(bizOrgCode); dto.setBizOrgCode(bizOrgCode);
List<Map<String, Object>> res = signServiceImpl.queryPeopleInfo(dto); List<Map<String, Object>> res = signServiceImpl.queryPeopleInfo(dto);
......
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