设备看板接口
parent
126ff29e69
commit
3bd0d8a653
@ -0,0 +1,16 @@
|
|||||||
|
package com.op.device.controller;
|
||||||
|
|
||||||
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||||||
|
import org.springframework.web.bind.annotation.RestController;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设备看板接口
|
||||||
|
*
|
||||||
|
* @author wws
|
||||||
|
* @date 2023-11-15
|
||||||
|
*/
|
||||||
|
@RestController
|
||||||
|
@RequestMapping("/deviceInterface")
|
||||||
|
public class DeviceInterfaceController {
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
package com.op.device.service;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设备看板接口
|
||||||
|
*/
|
||||||
|
public interface IDeviceInterfaceService {
|
||||||
|
}
|
@ -0,0 +1,11 @@
|
|||||||
|
package com.op.device.service.impl;
|
||||||
|
|
||||||
|
import com.op.device.service.IDeviceInterfaceService;
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 看板接口实现类
|
||||||
|
*/
|
||||||
|
@Service
|
||||||
|
public class DeviceInterfaceServiceImpl implements IDeviceInterfaceService {
|
||||||
|
}
|
Loading…
Reference in New Issue