16 lines
592 B
Python
16 lines
592 B
Python
from utils import model
|
|
from django.contrib.postgres.fields import JSONField
|
|
from django.db import models
|
|
from rest_framework.exceptions import ParseError
|
|
from simple_history.models import HistoricalRecords
|
|
|
|
from apps.certset.models import ImplementRule, UnitType, EvaluationItem, Standard
|
|
from apps.crm.models import Enterprise
|
|
from apps.project.models import CertApp
|
|
from apps.system.models import CommonAModel, CommonBModel, Dict, User
|
|
|
|
# class Accessment(CommonAModel):
|
|
# """
|
|
# 认证评定
|
|
# """
|
|
# number = models.CharField('评定表编号', unique=True, max_length=200) |