32 lines
914 B
TypeScript
32 lines
914 B
TypeScript
/**
|
|
* Amortizacion Entity
|
|
* Amortizaciones de anticipos por estimacion
|
|
*
|
|
* @module Estimates
|
|
* @table estimates.amortizaciones
|
|
* @ddl schemas/04-estimates-schema-ddl.sql
|
|
*/
|
|
import { Tenant } from '../../core/entities/tenant.entity';
|
|
import { User } from '../../core/entities/user.entity';
|
|
import { Anticipo } from './anticipo.entity';
|
|
import { Estimacion } from './estimacion.entity';
|
|
export declare class Amortizacion {
|
|
id: string;
|
|
tenantId: string;
|
|
anticipoId: string;
|
|
estimacionId: string;
|
|
amount: number;
|
|
amortizationDate: Date;
|
|
notes: string | null;
|
|
createdAt: Date;
|
|
createdById: string | null;
|
|
updatedAt: Date | null;
|
|
updatedById: string | null;
|
|
deletedAt: Date | null;
|
|
deletedById: string | null;
|
|
tenant: Tenant;
|
|
anticipo: Anticipo;
|
|
estimacion: Estimacion;
|
|
createdBy: User | null;
|
|
}
|
|
//# sourceMappingURL=amortizacion.entity.d.ts.map
|