8 lines
210 B
Python
8 lines
210 B
Python
|
|
from django.apps import AppConfig
|
||
|
|
|
||
|
|
|
||
|
|
class OrganizationConfig(AppConfig):
|
||
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
||
|
|
name = 'apps.organization'
|
||
|
|
verbose_name = '组织(机构 / 科室)'
|