-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
38 changed files
with
1,349 additions
and
169 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,29 @@ | ||
# 员工组关联关系 | ||
# 员工组所属关系 | ||
|
||
**员工组关联关系(`EmployeeGroup`)** | ||
**员工组所属关系(`EmployeeGroupRelation`)**是上下级员工组之间的所属关系。 | ||
|
||
字段定义如下: | ||
|
||
- **ID(`id`)**:系统定义的唯一标识符。 | ||
- **父员工组(`parent`)**: | ||
- **子员工组(`child`)**: | ||
- **创建时间(`createdAt`)**:系统维护的创建时间。 | ||
- **上级员工组(`parent`)**:用户创建的上级员工组。 | ||
- **下级员工组(`child`)**:用户创建的下级员工组。 | ||
|
||
示例数据如下: | ||
|
||
```json | ||
{ | ||
"id": 1, | ||
"createdAt": "2024-02-05T08:00:00Z", | ||
"parent": { | ||
"id": 1, | ||
"name": "committee-of-managers", | ||
"verboseName": "负责人委员会" | ||
}, | ||
"child": { | ||
"id": 2, | ||
"name": "committee-of-human-resources", | ||
"verboseName": "人力资源委员会" | ||
} | ||
} | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
# 职级序列 | ||
|
||
**职级序列(`RankCategory`)**是职级类别。 | ||
|
||
字段定义如下: | ||
|
||
- **ID(`id`)**:系统定义的唯一标识符。 | ||
- **标识(`name`)**:用户自定义的标识字段,租户内唯一。 | ||
- **名称(`verboseName`)**:用户自定义的名称。 | ||
|
||
示例数据如下: | ||
|
||
```json | ||
{ | ||
"id": 1, | ||
"name": "T", | ||
"verboseName": "技术序列" | ||
} | ||
``` | ||
|
||
## 职级序列关系 | ||
|
||
**职级序列(`RankCategoryRelation`)**是职级类别的所属关系。 | ||
|
||
字段定义如下: | ||
|
||
- **ID(`id`)**:系统定义的唯一标识符。 | ||
- **创建时间(`createdAt`)**: 系统维护的创建时间。 | ||
- **父职级序列(`parent`)**: 上层职级序列。 | ||
- **子职级序列(`child`)**:下层职级序列。 | ||
|
||
示例数据如下: | ||
|
||
```json | ||
{ | ||
"id": 1, | ||
"createdAt": "2024-02-05T08:00:00Z", | ||
"parent": { | ||
"id": 2, | ||
"name": "L", | ||
"verboseName": "一般职级序列" | ||
}, | ||
"child": { | ||
"id": 1, | ||
"name": "T", | ||
"verboseName": "技术序列" | ||
} | ||
} | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# 职级等级 | ||
|
||
职级等级(`RankLevel`)是区分不同职级之间相对重要性和复杂性的等级。较高的职级等级通常表示对组织或业务的更高级别的管理和决策责任,而较低的职级等级可能对应更为基础的操作性工作或辅助性工作。 | ||
|
||
字段定义如下: | ||
|
||
- **ID(`id`)**:系统维护的唯一标识符。 | ||
- **等级(`level`)**:数字越高、等级越高。一个职级规则下唯一。 | ||
- **名称(`verboseName`)**:对等级的常用称呼 | ||
|
||
示例数据如下: | ||
|
||
```json | ||
{ | ||
"id": 1, | ||
"level": 1, | ||
"verboseName": "专员" | ||
} | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Oops, something went wrong.