new
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
主要保存公司内部外部业务系统。
|
||||
**现有业务**
|
||||
```plantuml
|
||||
!theme sketchy-outline
|
||||
package "社区服务平台" {
|
||||
[智慧小区]
|
||||
[网格管理业务]
|
||||
}
|
||||
package "保险" {
|
||||
[医疗责任]
|
||||
[校园责任]
|
||||
[小区责任]
|
||||
}
|
||||
```
|
||||
|
||||
**数据模型**
|
||||
```plantuml
|
||||
!theme minty
|
||||
package 公司业务信息域 {
|
||||
class Service<服务信息> {
|
||||
string service_id
|
||||
string name
|
||||
string code
|
||||
string provider_corp_id
|
||||
}
|
||||
|
||||
class ServiceUserMapping<系统用户关系映射> {
|
||||
string person_id
|
||||
string user_id
|
||||
string service_id
|
||||
datatime register_date
|
||||
}
|
||||
}
|
||||
Service ||--o{ ServiceUserMapping
|
||||
Person ||--o{ ServiceUserMapping
|
||||
```
|
||||
Reference in New Issue
Block a user