| | |
| | | package com.doumee.service.business; |
| | | |
| | | import com.doumee.core.haikang.model.param.request.TransparentChannelSingleRequest; |
| | | import com.doumee.service.business.third.model.LoginUserInfo; |
| | | import com.doumee.service.business.third.model.PageData; |
| | | import com.doumee.service.business.third.model.PageWrap; |
| | | import com.doumee.dao.business.model.Device; |
| | | import org.eclipse.paho.client.mqttv3.MqttMessage; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | |
| | | * @date 2023/11/30 15:33 |
| | | */ |
| | | public interface DeviceService { |
| | | |
| | | |
| | | /** |
| | | * 创建 |
| | |
| | | * |
| | | * @param id 主键 |
| | | */ |
| | | void deleteById(Integer id); |
| | | void deleteById(Integer id, LoginUserInfo userInfo); |
| | | |
| | | /** |
| | | * 删除 |
| | |
| | | * |
| | | * @param ids 主键集 |
| | | */ |
| | | void deleteByIdInBatch(List<Integer> ids); |
| | | void deleteByIdInBatch(List<Integer> ids, LoginUserInfo userInfo); |
| | | |
| | | /** |
| | | * 主键更新 |
| | |
| | | long count(Device device); |
| | | |
| | | void setLedContent(TransparentChannelSingleRequest body); |
| | | void setAllLedDefualtContent(); |
| | | void allLedDefualtContent(); |
| | | |
| | | void setBroadcaseBobao(Device body); |
| | | String setBroadcaseBobaoHttp(Device body); |
| | | |
| | | void duanluqiCmd(Device param); |
| | | |
| | | void updateUsedById(Device d); |
| | | |
| | | void autoCloseCmdTimer(); |
| | | void startCheckDuanluqiSubjob(); |
| | | } |