From 5c7775e110fa1c99dff48cc27fb7a97d0936bb7f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=96=B9=E6=88=90?= Date: Thu, 9 Oct 2025 22:12:23 +0800 Subject: [PATCH] =?UTF-8?q?feat(models):=20=E5=9C=A8Policy=E6=A8=A1?= =?UTF-8?q?=E5=9E=8B=E4=B8=AD=E6=B7=BB=E5=8A=A0remark=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/models/policy.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/models/policy.py b/app/models/policy.py index 7291944..9f76747 100644 --- a/app/models/policy.py +++ b/app/models/policy.py @@ -11,6 +11,8 @@ class Policy(BaseModel, TimestampMixin): name = fields.CharField(max_length=20, description="行业名称") level = fields.CharEnumField(PolicyType, description="政策扶持等级") score = fields.IntField( description="政策匹配度基准分",default=0) + remark = fields.TextField(default="备注") + class Meta: table = "policy" \ No newline at end of file