Commit b293f2c6 by QianQiXiang

根据状态来导出通讯录

parent c353fd55
......@@ -493,7 +493,7 @@ public class StaffController extends WebBaseController {
String stringActiveFlag = request.getParameter("activeFlag");
Integer activeFlag = null;
if (stringActiveFlag != null) {
activeFlag = Integer.valueOf(stringActiveFlag);
activeFlag = Integer.parseInt(stringActiveFlag,10);
}
List<String> departmentIdSet = new ArrayList<>();
departmentIdSet.add(departmentId);
......
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