Commit 305b24f7 by qwmqiuwenmin

fix

parent 804b2cf3
......@@ -6,6 +6,8 @@ import java.util.Map;
import java.util.stream.Collectors;
import org.apache.commons.lang.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
......@@ -34,6 +36,8 @@ import com.gic.haoban.manage.web.vo.StoreVo;
@RestController
public class DepartmentContoller extends WebBaseController{
private static Logger logger = LoggerFactory.getLogger(DepartmentContoller.class);
@Autowired
private DepartmentApiService departmentApiService;
......@@ -45,6 +49,7 @@ public class DepartmentContoller extends WebBaseController{
public HaobanResponse departmentList(String parentId,BasePageInfo pageInfo,String keyword) {
LoginVO login = (LoginVO) AuthRequestUtil.getSessionUser();
String wxEnterpriseId = login.getWxEnterpriseId();
logger.info("【部门列表】wxEnterpriseId={}",wxEnterpriseId);
Page<DepartmentDTO> page = new Page<DepartmentDTO>();
List<DepartmentDTO> list = new ArrayList<DepartmentDTO>();
......
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