/** * * 工位绑定产线参数 * */ export interface Station { id?:number; //工位编码 code?: string; //上级产线编码 parentCode?: string; } /** * * 工位绑定设备参数 * */ export interface StationDevice { //工位id stationId?: number; //设备编号 deviceNo?: string; }