import { Model, Sequelize } from 'sequelize'; import { ModelStatic } from '../../d.ts'; import { PlantInfoStatic } from './PlantInfo'; export interface IDeptInfo extends Model { deptId: number; plantId: number; deptNo: string; deptNameEn: string; deptNameTw: string; deptNameCn: string; } export declare type DeptInfoStatic = ModelStatic; interface IDeptInfoReferencedModels { PlantInfo: PlantInfoStatic; } export declare function deptInfoModelFactory(sequelize: Sequelize, { PlantInfo, }: IDeptInfoReferencedModels): DeptInfoStatic; export {};