| 282 | |
| 283 | |
| 284 | class ProblemParagraphMapping(AppModelMixin): |
| 285 | id = models.UUIDField(primary_key=True, max_length=128, default=uuid.uuid7, editable=False, verbose_name="主键id") |
| 286 | knowledge = models.ForeignKey(Knowledge, on_delete=models.DO_NOTHING, db_constraint=False) |
| 287 | document = models.ForeignKey(Document, on_delete=models.DO_NOTHING, db_constraint=False) |
| 288 | problem = models.ForeignKey(Problem, on_delete=models.DO_NOTHING, db_constraint=False) |
| 289 | paragraph = models.ForeignKey(Paragraph, on_delete=models.DO_NOTHING, db_constraint=False) |
| 290 | |
| 291 | class Meta: |
| 292 | db_table = "problem_paragraph_mapping" |
| 293 | |
| 294 | |
| 295 | class Termbase(AppModelMixin): |
no outgoing calls
no test coverage detected