import { Model } from 'sequelize'; import { IVendorModelAttributes } from '../../interfaces/vendorManagementInterface'; import { TVendorCreationAttributes } from '../../types/vendorType'; import { COMMAN_STATUS } from '../../constants/app'; declare class VendorManagementModel extends Model implements IVendorModelAttributes { status: COMMAN_STATUS; name: string; mobile1: string; mobile2: string; email: string; gstNo: string; address1: string; address2: string; pinCode: string; taluka?: string; area: string; cityId: number; stateId: number; countryId: number; id: string; instituteId: string; createdBy: string; updatedBy: string; deletedBy: string; readonly createdAt: Date; readonly deletedAt: string; readonly updatedAt: Date; static associate(models: any): void; } export default VendorManagementModel;