9 lines
184 B
Python
9 lines
184 B
Python
from utils.haikang_util import HaikangUtil
|
|
import asyncio
|
|
|
|
|
|
|
|
door_index_codes = ['D01']
|
|
data = asyncio.run( HaikangUtil.get_door_status(door_index_codes))
|
|
print("门禁状态", data)
|