fix: taskscreen

This commit is contained in:
yanps
2023-12-07 15:06:05 +08:00
parent 46bee96649
commit 16b8bcd75d
2 changed files with 12 additions and 0 deletions

View File

@@ -7,6 +7,10 @@ import org.nl.acs.device.domain.DeviceAssigned;
import org.nl.common.base.BaseMapper;
import org.springframework.stereotype.Repository;
/**
* @author tuqiang
*/
@Repository
public interface TaskScreenMapper extends CommonMapper<Device> {

View File

@@ -5,6 +5,9 @@ import com.alibaba.fastjson.JSONObject;
import com.baomidou.mybatisplus.extension.service.IService;
import org.nl.acs.device.domain.Device;
/**
* @author tuqiang
*/
public interface TaskScreenService extends IService<Device> {
/**
@@ -14,5 +17,10 @@ public interface TaskScreenService extends IService<Device> {
*/
JSONArray selectLedList();
/**
* 前端设备下拉选列表
* @param device
* @return
*/
JSONObject getLedMessage(String device);
}