39 lines
1.2 KiB
TypeScript
39 lines
1.2 KiB
TypeScript
/**
|
|
* ProgramaActividad Entity
|
|
* Actividades del programa de obra (WBS)
|
|
*
|
|
* @module Progress
|
|
* @table construction.programa_actividades
|
|
* @ddl schemas/01-construction-schema-ddl.sql
|
|
*/
|
|
import { Tenant } from '../../core/entities/tenant.entity';
|
|
import { User } from '../../core/entities/user.entity';
|
|
import { Concepto } from '../../budgets/entities/concepto.entity';
|
|
import { ProgramaObra } from './programa-obra.entity';
|
|
export declare class ProgramaActividad {
|
|
id: string;
|
|
tenantId: string;
|
|
programaId: string;
|
|
conceptoId: string | null;
|
|
parentId: string | null;
|
|
name: string;
|
|
sequence: number;
|
|
plannedStart: Date | null;
|
|
plannedEnd: Date | null;
|
|
plannedQuantity: number;
|
|
plannedWeight: number;
|
|
wbsCode: string | null;
|
|
createdAt: Date;
|
|
createdById: string | null;
|
|
updatedAt: Date | null;
|
|
updatedById: string | null;
|
|
deletedAt: Date | null;
|
|
deletedById: string | null;
|
|
tenant: Tenant;
|
|
programa: ProgramaObra;
|
|
concepto: Concepto | null;
|
|
parent: ProgramaActividad | null;
|
|
children: ProgramaActividad[];
|
|
createdBy: User | null;
|
|
}
|
|
//# sourceMappingURL=programa-actividad.entity.d.ts.map
|