feat(regulatory): 增加整改复核闭环
This commit is contained in:
28
review_agent/migrations/0005_alter_regulatoryissue_status.py
Normal file
28
review_agent/migrations/0005_alter_regulatoryissue_status.py
Normal 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,
|
||||
),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user