
# 1. 获取系统时区
## 1.1 接口描述
接口名:kd.bos.inte.api.IInteService.getSysTimezone()
获取系统时区。
## 1.2 输入参数
无。
## 1.3 输出参数
| **数据类型** | **说明** |
| ------------- | ---------------- |
| DynamicObject | 系统时区基础资料 |
## 1.4 代码示例
```java
IInteService service = ServiceFactory.getService(IInteService.class);
DynamicObject dyo = service.getSysTimezone();
```
# 2. 获取用户时区
## 2.1 接口描述
接口名:kd.bos.inte.api.IInteService.getUserTimezone(Long userID)
根据用户ID获取用户时区。
## 2.2 输入参数
| **参数名称** | **数据类型** | **必填** | **说明** |
| ------------ | -------------- | -------- | -------- |
| userID | java.lang.Long | 是 | 用户ID |
## 2.3 输出参数
| **数据类型** | **说明** |
| ------------- | ---------------- |
| DynamicObject | 用户时区基础资料 |
## 2.4 代码示例
```java
IInteService service = ServiceFactory.getService(IInteService.class);
Dynamic