26 lines
660 B
TypeScript
26 lines
660 B
TypeScript
/**
|
|
* ChecklistItem Entity
|
|
* Items de verificación en checklists
|
|
*
|
|
* @module Quality
|
|
* @table quality.checklist_items
|
|
*/
|
|
import { Tenant } from '../../core/entities/tenant.entity';
|
|
import { Checklist } from './checklist.entity';
|
|
export declare class ChecklistItem {
|
|
id: string;
|
|
tenantId: string;
|
|
checklistId: string;
|
|
sequenceNumber: number;
|
|
category: string;
|
|
description: string;
|
|
isCritical: boolean;
|
|
requiresPhoto: boolean;
|
|
acceptanceCriteria: string;
|
|
isActive: boolean;
|
|
createdAt: Date;
|
|
updatedAt: Date;
|
|
tenant: Tenant;
|
|
checklist: Checklist;
|
|
}
|
|
//# sourceMappingURL=checklist-item.entity.d.ts.map
|