import { Model } from 'sequelize'; import { IRmsGrnAttributes } from '../../interfaces/rmsGrnInterface'; import { TRmsGrnCreationAttributes } from '../../types/rmsGrnType'; import { COMMAN_STATUS, RMS_APPROVAL_STATUS } from '../../constants/app'; declare class RmsGrnModel extends Model { id: string; instituteId: string; grnNo: string; purchaseOrderId: string; vendorId: string; receivedDate: Date; receivedBy: string; status: COMMAN_STATUS; approvalStatus: RMS_APPROVAL_STATUS; 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 RmsGrnModel;