123456789101112131415161718192021 |
- package com.szwl.service;
- import com.szwl.model.entity.TEquipment;
- /**
- * <p>
- * 设备表 服务类
- * </p>
- *
- * @author wuhs
- * @since 2022-04-19
- */
- public interface TEquipmentService {
- /**
- * 发送信息,1:个推,2:MQ
- */
- public String sentMessage(String clientId, String json);
- }
|