|
@@ -1,6 +1,10 @@
|
|
|
package com.xy.service;
|
|
|
|
|
|
import com.xy.annotate.RestMappingController;
|
|
|
+import com.xy.dto.DeviceTypeAlgorithmBeforConfigDto;
|
|
|
+import com.xy.utils.R;
|
|
|
+import org.springframework.web.bind.annotation.PostMapping;
|
|
|
+import org.springframework.web.bind.annotation.RequestBody;
|
|
|
|
|
|
/**
|
|
|
* <p>
|
|
@@ -13,4 +17,6 @@ import com.xy.annotate.RestMappingController;
|
|
|
@RestMappingController("/device-type-algorithm-befor-config")
|
|
|
public interface DeviceTypeAlgorithmBeforConfigService {
|
|
|
|
|
|
+ @PostMapping("obj")
|
|
|
+ R<DeviceTypeAlgorithmBeforConfigDto.Vo> obj(@RequestBody DeviceTypeAlgorithmBeforConfigDto.Vo vo);
|
|
|
}
|