package com.whyc.controller;
|
|
import com.whyc.dto.Response;
|
import com.whyc.pojo.db_ckpwrdev_data_rt.CKPowerDevSignalSet;
|
import com.whyc.service.CKPowerDevSignalSetService;
|
import io.swagger.annotations.Api;
|
import io.swagger.annotations.ApiOperation;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.web.bind.annotation.PostMapping;
|
import org.springframework.web.bind.annotation.RequestBody;
|
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.bind.annotation.RestController;
|
|
@RestController
|
@Api(tags = "测控电源设备遥信量设置")
|
@RequestMapping("ckPowerDevSignalSet")
|
public class CKPowerDevSignalSetController {
|
|
@Autowired
|
private CKPowerDevSignalSetService service;
|
|
@ApiOperation("设置-模拟值")
|
@PostMapping("update")
|
public Response update(@RequestBody CKPowerDevSignalSet set){
|
return service.update(set);
|
}
|
|
}
|