Commit fe004cd3 by 徐高华

test

parent 298bbf5a
......@@ -431,4 +431,18 @@ public class TestController extends WebBaseController {
return false ;
}
@RequestMapping("test-get-qwinfo")
public Object getQwInfo(String wxEnterpriseId) {
if(StringUtils.isEmpty(wxEnterpriseId)) {
return "参数无" ;
}
WxEnterpriseQwDTO qwDTO = this.wxEnterpriseApiService.getQwInfo(wxEnterpriseId) ;
if(null == qwDTO) {
return "企业不存在" ;
}
Map<String,Object> map = new HashMap<>();
map.put("企微信息", qwDTO) ;
return map ;
}
}
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