Implementacion modulo aprobaciones

This commit is contained in:
2026-06-20 17:18:18 +00:00
parent 998708fd2e
commit 8aefb2575d
8 changed files with 624 additions and 1 deletions

View File

@ -0,0 +1,17 @@
import { ObjectId } from "mongoose";
export interface IApproval {
referenceType:string;
referenceId:ObjectId;
approvedBy?:ObjectId;
approvedDate?:Date;
status:string;
comments?:string;
}