variables ids faltantes

This commit is contained in:
xXpuma99Xx
2022-10-24 07:52:28 -05:00
parent 45bec187f9
commit 866dd0cd42
14 changed files with 79 additions and 9 deletions
+9
View File
@@ -29,6 +29,15 @@ export class Multa {
@Column({ type: Boolean, nullable: false, default: false })
retraso: boolean;
@Column({ type: Number, nullable: true })
id_institucion_infraccion: number;
@Column({ type: Number, nullable: true })
id_operador: number;
@Column({ type: Number, nullable: true })
id_prestamo: number;
@ManyToOne(
() => InstitucionInfraccion,
(institucionInfraccion) => institucionInfraccion.multas,