
# 选择部门
扫码体验：
![](https://support.huaweicloud.com/devg-welink/figure/zh-cn_image_0000001435348968.png "点击放大")
#### 请求参数
无。
#### 返回结果
| **参数**     | **说明** |
|:---|:---|
| deptCode   | 部门id   |
| deptNameCN | 部门中文名  |
| deptNameEN | 部门英文名  |
   
#### 请求示例
- ES6版本
```
HWH5.getDepartment()
  .then(res => {
    console.log(res);
  })
  .catch(err => {
    console.log(err);
  });
```
- ES5版本
```
HWH5.getDepartment()
  .then(function (res) {
    console.log(res);
  })
  .catch(function (err) {
    console.log(err);
  });
```
