33 lines
957 B
TypeScript
33 lines
957 B
TypeScript
/**
|
|
* PresupuestoPartida Entity
|
|
* Lineas/partidas de un presupuesto
|
|
*
|
|
* @module Budgets
|
|
* @table construction.presupuesto_partidas
|
|
* @ddl schemas/01-construction-schema-ddl.sql
|
|
*/
|
|
import { Tenant } from '../../core/entities/tenant.entity';
|
|
import { User } from '../../core/entities/user.entity';
|
|
import { Presupuesto } from './presupuesto.entity';
|
|
import { Concepto } from './concepto.entity';
|
|
export declare class PresupuestoPartida {
|
|
id: string;
|
|
tenantId: string;
|
|
presupuestoId: string;
|
|
conceptoId: string;
|
|
sequence: number;
|
|
quantity: number;
|
|
unitPrice: number;
|
|
totalAmount: number;
|
|
createdAt: Date;
|
|
createdById: string | null;
|
|
updatedAt: Date | null;
|
|
updatedById: string | null;
|
|
deletedAt: Date | null;
|
|
deletedById: string | null;
|
|
tenant: Tenant;
|
|
presupuesto: Presupuesto;
|
|
concepto: Concepto;
|
|
createdBy: User | null;
|
|
}
|
|
//# sourceMappingURL=presupuesto-partida.entity.d.ts.map
|