package com.whyc.controller;
|
|
import com.whyc.service.CKPowerDevRtService;
|
import com.whyc.service.CKPowerDevRtSetService;
|
import io.swagger.annotations.Api;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.bind.annotation.RestController;
|
|
@RestController
|
@Api(tags = "测控电源设备遥测量")
|
@RequestMapping("ckPowerDevSet")
|
public class CKPowerDevRtSetController {
|
|
@Autowired
|
private CKPowerDevRtSetService service;
|
|
|
|
}
|