package com.doumee.service.business; import com.doumee.dao.business.model.Locks; import com.doumee.dao.business.model.MqttLog; /** * 与硬件对接服务 * @author 江蹄蹄 * @date 2023/10/09 18:06 */ public interface DeviceService { /** * 下发开车开锁指令 * @return String */ MqttLog openLock(Locks locks); MqttLog getLockInfo(Locks locks); void testPush(String topic, String json); }