import { IDefaultAttributes } from './commonInterface'; export interface IRmsGrnItemAttributes extends IDefaultAttributes { 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; }