34 lines
1023 B
TypeScript
34 lines
1023 B
TypeScript
/**
|
|
* ProgramaObra Entity
|
|
* Programa maestro de obra (planificacion)
|
|
*
|
|
* @module Progress
|
|
* @table construction.programa_obra
|
|
* @ddl schemas/01-construction-schema-ddl.sql
|
|
*/
|
|
import { Tenant } from '../../core/entities/tenant.entity';
|
|
import { User } from '../../core/entities/user.entity';
|
|
import { Fraccionamiento } from '../../construction/entities/fraccionamiento.entity';
|
|
import { ProgramaActividad } from './programa-actividad.entity';
|
|
export declare class ProgramaObra {
|
|
id: string;
|
|
tenantId: string;
|
|
fraccionamientoId: string;
|
|
code: string;
|
|
name: string;
|
|
version: number;
|
|
startDate: Date;
|
|
endDate: Date;
|
|
isActive: boolean;
|
|
createdAt: Date;
|
|
createdById: string | null;
|
|
updatedAt: Date | null;
|
|
updatedById: string | null;
|
|
deletedAt: Date | null;
|
|
deletedById: string | null;
|
|
tenant: Tenant;
|
|
fraccionamiento: Fraccionamiento;
|
|
createdBy: User | null;
|
|
actividades: ProgramaActividad[];
|
|
}
|
|
//# sourceMappingURL=programa-obra.entity.d.ts.map
|