29 lines
852 B
TypeScript
29 lines
852 B
TypeScript
/**
|
|
* EstimacionWorkflow Entity
|
|
* Historial de workflow de estimaciones
|
|
*
|
|
* @module Estimates
|
|
* @table estimates.estimacion_workflow
|
|
* @ddl schemas/04-estimates-schema-ddl.sql
|
|
*/
|
|
import { Tenant } from '../../core/entities/tenant.entity';
|
|
import { User } from '../../core/entities/user.entity';
|
|
import { Estimacion, EstimateStatus } from './estimacion.entity';
|
|
export declare class EstimacionWorkflow {
|
|
id: string;
|
|
tenantId: string;
|
|
estimacionId: string;
|
|
fromStatus: EstimateStatus | null;
|
|
toStatus: EstimateStatus;
|
|
action: string;
|
|
comments: string | null;
|
|
performedById: string;
|
|
performedAt: Date;
|
|
createdAt: Date;
|
|
createdById: string | null;
|
|
tenant: Tenant;
|
|
estimacion: Estimacion;
|
|
performedBy: User;
|
|
createdBy: User | null;
|
|
}
|
|
//# sourceMappingURL=estimacion-workflow.entity.d.ts.map
|