import { Model, Sequelize } from 'sequelize'; import { ModelStatic } from '../../d.ts'; import { LineInfoStatic } from './LineInfo'; import { PlantInfoStatic } from './PlantInfo'; export interface ITargetInfo extends Model { targetId: number; plantId: number; lineId: number; targetCode: string; unitNo: string; stationId: number; targetGoal: string; flag: string; memo: string; } export declare type TargetInfoStatic = ModelStatic; interface ITargetInfoReferencedModels { PlantInfo: PlantInfoStatic; LineInfo: LineInfoStatic; } export declare function targetInfoModelFactory(sequelize: Sequelize, { PlantInfo, LineInfo, }: ITargetInfoReferencedModels): TargetInfoStatic; export {};