types.ts 319 B

123456789101112131415161718192021222324252627
  1. /**
  2. *
  3. * 工位绑定产线参数
  4. *
  5. */
  6. export interface Station {
  7. id?:number;
  8. //工位编码
  9. code?: string;
  10. //上级产线编码
  11. parentCode?: string;
  12. }
  13. /**
  14. *
  15. * 工位绑定设备参数
  16. *
  17. */
  18. export interface StationDevice {
  19. //工位id
  20. stationId?: number;
  21. //设备编号
  22. deviceNo?: string;
  23. }