feat(regulatory): 增加整改复核闭环

This commit is contained in:
2026-06-07 09:32:39 +08:00
parent 1bdc7322cf
commit d88d642f6a
7 changed files with 375 additions and 7 deletions

View File

@@ -0,0 +1,28 @@
# Generated by Django 5.2.14 on 2026-06-07 01:29
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("review_agent", "0004_regulatoryreviewbatch_condition_json_and_more"),
]
operations = [
migrations.AlterField(
model_name="regulatoryissue",
name="status",
field=models.CharField(
choices=[
("open", "待处理"),
("resolved", "已整改"),
("accepted", "已接受"),
("review_passed", "复核通过"),
("review_failed", "复核未通过"),
],
default="open",
max_length=20,
),
),
]