Skip to content

Commit

Permalink
deploy: bc9372e
Browse files Browse the repository at this point in the history
  • Loading branch information
Guo-Zhang committed Feb 7, 2024
1 parent a7814e5 commit cfa8a1e
Show file tree
Hide file tree
Showing 38 changed files with 1,349 additions and 169 deletions.
6 changes: 4 additions & 2 deletions README.html
Original file line number Diff line number Diff line change
Expand Up @@ -187,16 +187,18 @@
</li>
<li class="toctree-l2 has-children"><a class="reference internal" href="organizations/groups/README.html">员工组</a><input class="toctree-checkbox" id="toctree-checkbox-3" name="toctree-checkbox-3" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-3"><i class="fa-solid fa-chevron-down"></i></label><ul>
<li class="toctree-l3"><a class="reference internal" href="organizations/groups/group.html">员工组</a></li>
<li class="toctree-l3"><a class="reference internal" href="organizations/groups/group_relation.html">员工组关联关系</a></li>
<li class="toctree-l3"><a class="reference internal" href="organizations/groups/group_relation.html">员工组所属关系</a></li>
</ul>
</li>
<li class="toctree-l2 has-children"><a class="reference internal" href="organizations/positions/README.html">职务</a><input class="toctree-checkbox" id="toctree-checkbox-4" name="toctree-checkbox-4" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-4"><i class="fa-solid fa-chevron-down"></i></label><ul>
<li class="toctree-l3"><a class="reference internal" href="organizations/positions/position.html">职务</a></li>
<li class="toctree-l3"><a class="reference internal" href="organizations/positions/position_relation.html">职务关系</a></li>
<li class="toctree-l3"><a class="reference internal" href="organizations/positions/position_relation.html">职务汇报关系</a></li>
</ul>
</li>
<li class="toctree-l2 has-children"><a class="reference internal" href="organizations/ranks/README.html">职级</a><input class="toctree-checkbox" id="toctree-checkbox-5" name="toctree-checkbox-5" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-5"><i class="fa-solid fa-chevron-down"></i></label><ul>
<li class="toctree-l3"><a class="reference internal" href="organizations/ranks/rank.html">职级</a></li>
<li class="toctree-l3"><a class="reference internal" href="organizations/ranks/rank_category.html">职级序列</a></li>
<li class="toctree-l3"><a class="reference internal" href="organizations/ranks/rank_level.html">职级等级</a></li>
</ul>
</li>
<li class="toctree-l2 has-children"><a class="reference internal" href="organizations/duties/README.html">职责</a><input class="toctree-checkbox" id="toctree-checkbox-6" name="toctree-checkbox-6" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-6"><i class="fa-solid fa-chevron-down"></i></label><ul>
Expand Down
13 changes: 13 additions & 0 deletions _sources/organizations/groups/group.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,24 @@

**员工组(`EmployeeGroup`)**是员工的集合。

字段定义如下:

- **ID(`id`)**:系统生成的唯一标识符。
- **标识(`name`)**:用户自定义的标识,租户内唯一,方便计算机程序识别。
- **名称(`verbose_name`)**:用户自定义的名称,方便用户称呼。
- **类型(`type`)**:系统定义的员工组类型。

示例数据如下:

```json
{
"id": 1,
"name": "department-of-finance",
"verbose_name": "财务部",
"type": "department"
}
```

## 员工组类型

- **部门(`department`)**:指组织内按照功能或业务线划分的部门,如财务部、市场部等。
Expand Down
27 changes: 23 additions & 4 deletions _sources/organizations/groups/group_relation.md
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": "人力资源委员会"
}
}
```
10 changes: 4 additions & 6 deletions _sources/organizations/positions/position_relation.md
Original file line number Diff line number Diff line change
@@ -1,22 +1,20 @@
# 职务关系
# 职务汇报关系

职务关系(`PositionRelation`),也称“汇报关系”,是指在组织或团队中,基于职务层级和责任分配而建立的上下级关系。下属向其直接上级汇报工作进展、问题和决策,而上级负责指导、监督和评估下属的工作表现。职务关系反映了组织的层级结构和工作分工,是组织内部权力和责任的重要体现。
职务汇报关系(`PositionRelation`)是指在组织或团队中,基于职务层级和责任分配而建立的上下级关系。下属向其直接上级汇报工作进展、问题和决策,而上级负责指导、监督和评估下属的工作表现。职务关系反映了组织的层级结构和工作分工,是组织内部权力和责任的重要体现。

字段定义如下:

- **ID(`id`)**:系统维护的唯一标识符。
- **创建时间(`createdAt`)**:系统维护的创建时间。
- **更新时间(`updatedAt`)**:系统维护的最新更新时间。
- **上级职务(`parent`)**:上级职务。
- **下级职务(`child`)**:下级职务。
- **上级职务(`parent`)**:用户创建的上级职务关系。
- **下级职务(`child`)**:用户创建的下级职务关系。

示例数据如下:

```json
{
"id": 1,
"createdAt": "2024-02-05T08:00:00Z",
"updatedAt": "2024-02-05T10:30:00Z",
"parent": {
"id": 123,
"createdAt": "2024-02-01T09:00:00Z",
Expand Down
34 changes: 9 additions & 25 deletions _sources/organizations/ranks/rank.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@

字段定义如下:

- **ID(`id`)**
- **标识(`name`)**:
- **序列(`category`)**
- **等级(`level`**
- **ID(`id`)**系统定义的唯一标识符。
- **标识(`name`)**: 用户自定义的标识字段,租户内唯一。
- **序列(`category`)**[职级序列](rank_category.md)
- **等级(`level`**[职级等级](rank_level.md)

示例数据如下:

Expand All @@ -20,27 +20,11 @@
"name": "T",
"verboseName": "技术序列"
},
"level": 1
}
```

## 职级序列

**职级序列(`RankCategory`)**是用户自定义的职级类别。

字段定义如下:

- **ID(`id`)**:系统定义的唯一标识符。
- **标识(`name`)**:用户自定义的标识字段,租户内唯一。
- **名称(`verboseName`)**:用户自定义的名称。
- **父职级序列(`parent`)**:上级职级序列。

示例数据如下:
"level": {
"id": 1,
"level": 1,
"verboseName": "专员"

```json
{
"id": 1,
"name": "T",
"verboseName": "技术序列"
}
}
```
49 changes: 49 additions & 0 deletions _sources/organizations/ranks/rank_category.md
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": "技术序列"
}
}
```
19 changes: 19 additions & 0 deletions _sources/organizations/ranks/rank_level.md
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": "专员"
}
```
2 changes: 1 addition & 1 deletion _sources/recruitment/applicants/applicant.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

- **ID(`id`)**:系统定义的唯一标识符。
- **状态(`status`)**:申请者在招聘流程中所处的阶段或位置。
- **附件(`attachments`)**: 申请者提交的附件,如简历、个人作品等。
- **附件列表(`attachments`)**: 申请者提交的附件,如简历、个人作品等。

## 申请者状态

Expand Down
6 changes: 4 additions & 2 deletions bounded_contexts/README.html
Original file line number Diff line number Diff line change
Expand Up @@ -187,16 +187,18 @@
</li>
<li class="toctree-l2 has-children"><a class="reference internal" href="../organizations/groups/README.html">员工组</a><input class="toctree-checkbox" id="toctree-checkbox-3" name="toctree-checkbox-3" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-3"><i class="fa-solid fa-chevron-down"></i></label><ul>
<li class="toctree-l3"><a class="reference internal" href="../organizations/groups/group.html">员工组</a></li>
<li class="toctree-l3"><a class="reference internal" href="../organizations/groups/group_relation.html">员工组关联关系</a></li>
<li class="toctree-l3"><a class="reference internal" href="../organizations/groups/group_relation.html">员工组所属关系</a></li>
</ul>
</li>
<li class="toctree-l2 has-children"><a class="reference internal" href="../organizations/positions/README.html">职务</a><input class="toctree-checkbox" id="toctree-checkbox-4" name="toctree-checkbox-4" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-4"><i class="fa-solid fa-chevron-down"></i></label><ul>
<li class="toctree-l3"><a class="reference internal" href="../organizations/positions/position.html">职务</a></li>
<li class="toctree-l3"><a class="reference internal" href="../organizations/positions/position_relation.html">职务关系</a></li>
<li class="toctree-l3"><a class="reference internal" href="../organizations/positions/position_relation.html">职务汇报关系</a></li>
</ul>
</li>
<li class="toctree-l2 has-children"><a class="reference internal" href="../organizations/ranks/README.html">职级</a><input class="toctree-checkbox" id="toctree-checkbox-5" name="toctree-checkbox-5" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-5"><i class="fa-solid fa-chevron-down"></i></label><ul>
<li class="toctree-l3"><a class="reference internal" href="../organizations/ranks/rank.html">职级</a></li>
<li class="toctree-l3"><a class="reference internal" href="../organizations/ranks/rank_category.html">职级序列</a></li>
<li class="toctree-l3"><a class="reference internal" href="../organizations/ranks/rank_level.html">职级等级</a></li>
</ul>
</li>
<li class="toctree-l2 has-children"><a class="reference internal" href="../organizations/duties/README.html">职责</a><input class="toctree-checkbox" id="toctree-checkbox-6" name="toctree-checkbox-6" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-6"><i class="fa-solid fa-chevron-down"></i></label><ul>
Expand Down
6 changes: 4 additions & 2 deletions bounded_contexts/digital_identities.html
Original file line number Diff line number Diff line change
Expand Up @@ -186,16 +186,18 @@
</li>
<li class="toctree-l2 has-children"><a class="reference internal" href="../organizations/groups/README.html">员工组</a><input class="toctree-checkbox" id="toctree-checkbox-3" name="toctree-checkbox-3" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-3"><i class="fa-solid fa-chevron-down"></i></label><ul>
<li class="toctree-l3"><a class="reference internal" href="../organizations/groups/group.html">员工组</a></li>
<li class="toctree-l3"><a class="reference internal" href="../organizations/groups/group_relation.html">员工组关联关系</a></li>
<li class="toctree-l3"><a class="reference internal" href="../organizations/groups/group_relation.html">员工组所属关系</a></li>
</ul>
</li>
<li class="toctree-l2 has-children"><a class="reference internal" href="../organizations/positions/README.html">职务</a><input class="toctree-checkbox" id="toctree-checkbox-4" name="toctree-checkbox-4" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-4"><i class="fa-solid fa-chevron-down"></i></label><ul>
<li class="toctree-l3"><a class="reference internal" href="../organizations/positions/position.html">职务</a></li>
<li class="toctree-l3"><a class="reference internal" href="../organizations/positions/position_relation.html">职务关系</a></li>
<li class="toctree-l3"><a class="reference internal" href="../organizations/positions/position_relation.html">职务汇报关系</a></li>
</ul>
</li>
<li class="toctree-l2 has-children"><a class="reference internal" href="../organizations/ranks/README.html">职级</a><input class="toctree-checkbox" id="toctree-checkbox-5" name="toctree-checkbox-5" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-5"><i class="fa-solid fa-chevron-down"></i></label><ul>
<li class="toctree-l3"><a class="reference internal" href="../organizations/ranks/rank.html">职级</a></li>
<li class="toctree-l3"><a class="reference internal" href="../organizations/ranks/rank_category.html">职级序列</a></li>
<li class="toctree-l3"><a class="reference internal" href="../organizations/ranks/rank_level.html">职级等级</a></li>
</ul>
</li>
<li class="toctree-l2 has-children"><a class="reference internal" href="../organizations/duties/README.html">职责</a><input class="toctree-checkbox" id="toctree-checkbox-6" name="toctree-checkbox-6" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-6"><i class="fa-solid fa-chevron-down"></i></label><ul>
Expand Down
6 changes: 4 additions & 2 deletions genindex.html
Original file line number Diff line number Diff line change
Expand Up @@ -186,16 +186,18 @@
</li>
<li class="toctree-l2 has-children"><a class="reference internal" href="organizations/groups/README.html">员工组</a><input class="toctree-checkbox" id="toctree-checkbox-3" name="toctree-checkbox-3" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-3"><i class="fa-solid fa-chevron-down"></i></label><ul>
<li class="toctree-l3"><a class="reference internal" href="organizations/groups/group.html">员工组</a></li>
<li class="toctree-l3"><a class="reference internal" href="organizations/groups/group_relation.html">员工组关联关系</a></li>
<li class="toctree-l3"><a class="reference internal" href="organizations/groups/group_relation.html">员工组所属关系</a></li>
</ul>
</li>
<li class="toctree-l2 has-children"><a class="reference internal" href="organizations/positions/README.html">职务</a><input class="toctree-checkbox" id="toctree-checkbox-4" name="toctree-checkbox-4" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-4"><i class="fa-solid fa-chevron-down"></i></label><ul>
<li class="toctree-l3"><a class="reference internal" href="organizations/positions/position.html">职务</a></li>
<li class="toctree-l3"><a class="reference internal" href="organizations/positions/position_relation.html">职务关系</a></li>
<li class="toctree-l3"><a class="reference internal" href="organizations/positions/position_relation.html">职务汇报关系</a></li>
</ul>
</li>
<li class="toctree-l2 has-children"><a class="reference internal" href="organizations/ranks/README.html">职级</a><input class="toctree-checkbox" id="toctree-checkbox-5" name="toctree-checkbox-5" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-5"><i class="fa-solid fa-chevron-down"></i></label><ul>
<li class="toctree-l3"><a class="reference internal" href="organizations/ranks/rank.html">职级</a></li>
<li class="toctree-l3"><a class="reference internal" href="organizations/ranks/rank_category.html">职级序列</a></li>
<li class="toctree-l3"><a class="reference internal" href="organizations/ranks/rank_level.html">职级等级</a></li>
</ul>
</li>
<li class="toctree-l2 has-children"><a class="reference internal" href="organizations/duties/README.html">职责</a><input class="toctree-checkbox" id="toctree-checkbox-6" name="toctree-checkbox-6" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-6"><i class="fa-solid fa-chevron-down"></i></label><ul>
Expand Down
6 changes: 4 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -188,16 +188,18 @@
</li>
<li class="toctree-l2 has-children"><a class="reference internal" href="organizations/groups/README.html">员工组</a><input class="toctree-checkbox" id="toctree-checkbox-3" name="toctree-checkbox-3" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-3"><i class="fa-solid fa-chevron-down"></i></label><ul>
<li class="toctree-l3"><a class="reference internal" href="organizations/groups/group.html">员工组</a></li>
<li class="toctree-l3"><a class="reference internal" href="organizations/groups/group_relation.html">员工组关联关系</a></li>
<li class="toctree-l3"><a class="reference internal" href="organizations/groups/group_relation.html">员工组所属关系</a></li>
</ul>
</li>
<li class="toctree-l2 has-children"><a class="reference internal" href="organizations/positions/README.html">职务</a><input class="toctree-checkbox" id="toctree-checkbox-4" name="toctree-checkbox-4" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-4"><i class="fa-solid fa-chevron-down"></i></label><ul>
<li class="toctree-l3"><a class="reference internal" href="organizations/positions/position.html">职务</a></li>
<li class="toctree-l3"><a class="reference internal" href="organizations/positions/position_relation.html">职务关系</a></li>
<li class="toctree-l3"><a class="reference internal" href="organizations/positions/position_relation.html">职务汇报关系</a></li>
</ul>
</li>
<li class="toctree-l2 has-children"><a class="reference internal" href="organizations/ranks/README.html">职级</a><input class="toctree-checkbox" id="toctree-checkbox-5" name="toctree-checkbox-5" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-5"><i class="fa-solid fa-chevron-down"></i></label><ul>
<li class="toctree-l3"><a class="reference internal" href="organizations/ranks/rank.html">职级</a></li>
<li class="toctree-l3"><a class="reference internal" href="organizations/ranks/rank_category.html">职级序列</a></li>
<li class="toctree-l3"><a class="reference internal" href="organizations/ranks/rank_level.html">职级等级</a></li>
</ul>
</li>
<li class="toctree-l2 has-children"><a class="reference internal" href="organizations/duties/README.html">职责</a><input class="toctree-checkbox" id="toctree-checkbox-6" name="toctree-checkbox-6" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-6"><i class="fa-solid fa-chevron-down"></i></label><ul>
Expand Down
Binary file modified objects.inv
Binary file not shown.
Loading

0 comments on commit cfa8a1e

Please sign in to comment.