14adf361 by 周伟奇

se compare part 2

1 parent beebba6a
...@@ -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
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!