You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
801 B

  1. ```mermaid
  2. classDiagram
  3. class A8kConsumableContainer
  4. class TipContainer
  5. class ReactionPlateContainer
  6. class LittBottleContainer
  7. class LarBottleContainer
  8. A8kConsumableContainer "1" --> "3" TipContainer
  9. A8kConsumableContainer "1" --> "6" ReactionPlateContainer
  10. A8kConsumableContainer "1" --> "6" LittBottleContainer
  11. A8kConsumableContainer "1" --> "6" LarBottleContainer
  12. class ConsumablesMgrService
  13. ConsumablesMgrService --> A8kConsumableContainer
  14. class ConsumableInfo {
  15. public String lotid;
  16. public ConsumableGroup group; // 耗材组
  17. public Integer pos; // 当前耗材信息属于哪个耗材组
  18. }
  19. ```
  20. ```mermaid
  21. ---
  22. title: 耗材状态更新机制
  23. ---
  24. sequenceDiagram
  25. ```