Commit f88117b5 by qwmqiuwenmin

fix

parent a86af46e
package com.gic.haoban.manage.web.controller;
import java.util.Iterator;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
......@@ -22,6 +23,13 @@ public class ApplicationController extends WebBaseController{
public HaobanResponse applicationList() {
List<ApplicationDTO> list = applicationApiService.listApplication();
Iterator<ApplicationDTO> it = list.listIterator();
while(it.hasNext()){
ApplicationDTO app = it.next();
if("通讯录".equals(app.getApplicationName())){
it.remove();
}
}
return resultResponse(HaoBanErrCode.ERR_1,list);
}
......
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