se compare part 2
Showing
2 changed files
with
13 additions
and
0 deletions
| ... | @@ -488,3 +488,16 @@ class IDBCRecords(models.Model): | ... | @@ -488,3 +488,16 @@ class IDBCRecords(models.Model): |
| 488 | db_table = 'idbc_records' | 488 | db_table = 'idbc_records' |
| 489 | 489 | ||
| 490 | 490 | ||
| 491 | class AFCSECompareResult(models.Model): | ||
| 492 | id = models.AutoField(primary_key=True, verbose_name="id") # 主键 | ||
| 493 | application_id = models.CharField(max_length=64, verbose_name="申请id") # 索引 | ||
| 494 | |||
| 495 | update_time = models.DateTimeField(auto_now=True, verbose_name='修改时间') | ||
| 496 | create_time = models.DateTimeField(auto_now_add=True, verbose_name='创建时间') | ||
| 497 | |||
| 498 | class Meta: | ||
| 499 | managed = False | ||
| 500 | db_table = 'afc_se_compare_result' | ||
| 501 | situ_db_label = 'afc' | ||
| 502 | |||
| 503 | ... | ... |
This diff is collapsed.
Click to expand it.
-
Please register or sign in to post a comment