Commit fde74b46 by jinxin

通讯录列表查询接口优化

parent 8a251bf4
......@@ -144,6 +144,7 @@ public class StaffApiServiceImpl implements StaffApiService {
if (null == staffListDTO){
return new Page<>();
}
logger.info("通讯录列表查询参数:{}",JSONObject.toJSONString(staffListDTO));
Integer relationFlag = staffListDTO.getRelationFlag();
String wxEnterpriseId = staffListDTO.getWxEnterpriseId();
BasePageInfo pageInfo = staffListDTO.getPageInfo();
......
......@@ -120,6 +120,7 @@ public class StaffController extends WebBaseController {
*/
@RequestMapping("staff-list")
public HaobanResponse staffList(@RequestBody StaffListQO qo) {
logger.info("通讯录列表查询参数:{}",JSONObject.toJSONString(qo));
WebLoginDTO login = AuthWebRequestUtil.getLoginUser();
String wxEnterpriseId = login.getWxEnterpriseId();
List<String> departmentIds = new ArrayList<>();
......
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