14 lines
		
	
	
		
			346 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			346 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']
 | 
						|
 | 
						|
 | 
						|
class ObjCate(models.IntegerChoices):
 | 
						|
    EMPLOYEE = 10, '个人'
 | 
						|
    POST = 20, '岗位'
 | 
						|
 | 
						|
 | 
						|
class Algo(models.TextChoices):
 | 
						|
    HELMET = 'helmet', '安全帽'
 |