Commit bce7aa77 by qwmqiuwenmin

fix

parent c52f8fa9
......@@ -730,4 +730,16 @@ public class DepartmentContoller extends WebBaseController{
}
@RequestMapping("department-batch-del")
public HaobanResponse departmentBatchDel(String departmentIds) {
String[] departmentIdArr = departmentIds.split(",");
for (String departmentId : departmentIdArr) {
HaobanResponse hr;
hr = departmentApiService.del(departmentId);
}
return resultResponse(HaoBanErrCode.ERR_1);
}
}
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