from django.db import models from apps.system.models import CommonAModel, Dict, User, CommonBModel from apps.certset.models import ImplementRule from simple_history.models import HistoricalRecords from rest_framework.exceptions import ParseError # Create your models here. class Application(CommonBModel): """ 认证项目申请 """ status_choices = ( ('草稿', '草稿'), ('已申请', '已申请'), ('已受理', '已受理'), ('进行中', '进行中'), ('已中止', '已中止'), ('已完成', '已完成') ) pass