import { Model } from 'sequelize'; import { IRmsGrnItemAttributes } from '../../interfaces/rmsGrnItemInterface'; import { TRmsGrnItemCreationAttributes } from '../../types/rmsGrnItemType'; declare class RmsGrnItemModel extends Model { id: string; instituteId: string; grnId: string; purchaseOrderItemId: string; resourceId: string; orderedQuantity: number; receivedQuantity: number; acceptedQuantity: number; rejectedQuantity: number; isExpiryTracked?: boolean | null; expiryDate?: Date | null; remarks?: string | null; createdBy?: string | null; updatedBy?: string | null; deletedBy?: string | null; readonly createdAt?: Date; readonly updatedAt?: Date; readonly deletedAt?: Date | null; static associate(models: any): void; } export default RmsGrnItemModel;