Commit 06044721 by QianQiXiang

根据状态来导出通讯录

parent 1f72372b
......@@ -492,10 +492,9 @@ public class StaffController extends WebBaseController {
pageInfo.setPageSize(pageSize);
String departmentId = request.getParameter("departmentId");
String stringActiveFlag = request.getParameter("activeFlag");
if (stringActiveFlag.equals("")) {
Integer activeFlag = null;
} else {
Integer activeFlag = Integer.parseInt(stringActiveFlag);
Integer activeFlag = null;
if (!stringActiveFlag.equals("")) {
activeFlag = Integer.parseInt(stringActiveFlag);
}
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