35 lines
947 B
TypeScript
35 lines
947 B
TypeScript
/**
|
|
* Concepto Entity
|
|
* Catalogo de conceptos de obra (estructura jerarquica)
|
|
*
|
|
* @module Budgets
|
|
* @table construction.conceptos
|
|
* @ddl schemas/01-construction-schema-ddl.sql
|
|
*/
|
|
import { Tenant } from '../../core/entities/tenant.entity';
|
|
import { User } from '../../core/entities/user.entity';
|
|
export declare class Concepto {
|
|
id: string;
|
|
tenantId: string;
|
|
parentId: string | null;
|
|
code: string;
|
|
name: string;
|
|
description: string | null;
|
|
unitId: string | null;
|
|
unitPrice: number | null;
|
|
isComposite: boolean;
|
|
level: number;
|
|
path: string | null;
|
|
createdAt: Date;
|
|
createdById: string | null;
|
|
updatedAt: Date | null;
|
|
updatedById: string | null;
|
|
deletedAt: Date | null;
|
|
deletedById: string | null;
|
|
tenant: Tenant;
|
|
parent: Concepto | null;
|
|
children: Concepto[];
|
|
createdBy: User | null;
|
|
updatedBy: User | null;
|
|
}
|
|
//# sourceMappingURL=concepto.entity.d.ts.map
|