mirror of
https://github.com/dptech-corp/Uni-Lab-OS.git
synced 2025-12-18 05:21:19 +00:00
1027byxinyu
This commit is contained in:
24
unilabos/resources/bioyond/bottles copy.py
Normal file
24
unilabos/resources/bioyond/bottles copy.py
Normal file
@@ -0,0 +1,24 @@
|
||||
from unilabos.resources.itemized_carrier import Bottle, BottleCarrier
|
||||
# 工厂函数
|
||||
|
||||
|
||||
def YB_jia_yang_tou_da(
|
||||
name: str,
|
||||
diameter: float = 35.0,
|
||||
height: float = 90.0,
|
||||
max_volume: float = 50000.0, # 50mL
|
||||
code: str = None,
|
||||
barcode: str = None,
|
||||
) -> Bottle:
|
||||
"""创建加样头(大)"""
|
||||
return Bottle(
|
||||
name=name,
|
||||
diameter=diameter,
|
||||
height=height,
|
||||
max_volume=max_volume,
|
||||
barcode=barcode,
|
||||
code=code,
|
||||
model="YB_jia_yang_tou_da",
|
||||
)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user