From 0cdf6c68a1ae55117cd6cc57ddac011e183d00ca Mon Sep 17 00:00:00 2001 From: TianyangZhang Date: Fri, 24 Oct 2025 13:45:48 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20ofm-models=20=E4=BF=AE=E6=94=B9?= =?UTF-8?q?=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/ofm/models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/ofm/models.py b/apps/ofm/models.py index 4c247a26..9b26349b 100644 --- a/apps/ofm/models.py +++ b/apps/ofm/models.py @@ -168,9 +168,9 @@ class PatentInfo(CommonBDModel): APPLY_AREAS = ( ('Domestic', '国内申请'), ('Foreign', '国外申请'), - (' PCT', 'PCT申请'), + ('PCT', 'PCT申请'), ) - + name = models.CharField('拟申请专利名称', max_length=100) author = models.CharField('发明人(设计人)', max_length=100) type = models.CharField('专利类型', max_length=50, choices=PATENT_TYPE_CHOICES, default='invention')