import { Model } from 'sequelize'; import { IFacilityMasterModelAttributes } from '../../interfaces/facilityMasterInterface'; import { TFacilityMasterModelCreationAttributes } from '../../types/facilityMasterType'; import { COMMAN_STATUS, FACILITY_MASTER_TYPE } from '../../constants/app'; export default class FacilityMasterModel extends Model { id: string; name: string; code: string; categoryId: string; status: COMMAN_STATUS; type?: FACILITY_MASTER_TYPE; sportsAcademyId?: string; createdBy?: string; updatedBy?: string; deletedBy?: string; readonly createdAt: Date; readonly updatedAt: Date; readonly deletedAt?: string; static associate(models: any): void; }