@tomei/finance
Version:
NestJS package for finance module
28 lines • 764 B
TypeScript
import { DocType, DocumentStatus } from '../../enum';
export declare class IDocumentAttr {
DocNo: string;
DocType: DocType;
DocDate: Date;
CompanyId: string;
Currency: string;
Amount: number;
Description: string;
Status: DocumentStatus;
IssuedById: string;
IssuedToId: string;
IssuedToType: string;
RelatedObjectId?: string;
RelatedObjectType?: string;
CreatedById: string;
CreatedAt: Date;
UpdatedById?: string;
UpdatedAt?: Date;
DocPDFFileMediaId?: string;
DocHTMLFileMediaId?: string;
AccSystemRefId?: string;
PostedToAccSystemYN: string;
PostedById?: string;
PostedDateTime?: Date;
UseAccSystemDocYN: string;
}
//# sourceMappingURL=document-attr.interface.d.ts.map