import { Model, Sequelize } from 'sequelize'; import { ModelStatic } from '../../d.ts'; import { ValueType } from '../enums'; export interface IMachineList extends Model { areaId: number; cityId: number; plantId: number; lineId: number; machineId: number; tagName: string; typeId: number; timeZone: number; woStatus: boolean; valueType: ValueType; machineConnectKey: string; } export declare type MachineListStatic = ModelStatic; export declare function machineListModelFactory(sequelize: Sequelize): MachineListStatic;