设备看板接口

highway
wws 10 months ago
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…
Cancel
Save