@tomei/finance
Version:
NestJS package for finance module
19 lines • 507 B
TypeScript
import { DocType, DocumentStatus } from '../../enum';
export interface IDocumentFindAll {
DocNo?: string;
DocType?: DocType;
StartDate?: Date;
EndDate?: Date;
IssuedToId?: string;
IssuedToType?: string;
Status?: DocumentStatus;
RelatedObjectId?: string;
RelatedObjectType?: string;
Description?: string;
DocumentItems?: {
Name?: string;
ItemId?: string;
ItemType?: string;
};
}
//# sourceMappingURL=document-find-all.interface.d.ts.map