17 lines
444 B
Python
Executable File
17 lines
444 B
Python
Executable File
from django.db import models
|
|
|
|
EXCLUDE_FIELDS_BASE = ['create_time', 'update_time', 'is_deleted']
|
|
EXCLUDE_FIELDS = ['create_time', 'update_time',
|
|
'is_deleted', 'create_by', 'update_by']
|
|
EXCLUDE_FIELDS_DEPT = EXCLUDE_FIELDS + ['belong_dept']
|
|
DEFAULT_PWD = 'abc!0000'
|
|
|
|
|
|
class ObjCate(models.IntegerChoices):
|
|
EMPLOYEE = 10, '个人'
|
|
POST = 20, '岗位'
|
|
|
|
|
|
class Algo(models.TextChoices):
|
|
HELMET = 'helmet', '安全帽'
|