lidongdong
2023-09-14 a1abd1e4ddf15d3ce1d3d0b22e7c7ac924d63e43
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.panzhihua.service_equipment.api;
 
import com.panzhihua.common.model.vos.ResultData;
import com.panzhihua.common.model.vos.union.StructuredVO;
import com.panzhihua.service_equipment.model.dos.Structured;
import io.swagger.annotations.Api;
import lombok.extern.slf4j.Slf4j;
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;
 
import java.util.List;
 
@Api(tags = {"新闻基本面,技术面相关接口"})
@RestController
@RequestMapping("/roomck-web")
@Slf4j
public class RoomckWebApi {
 
    @PostMapping("/roomck/ivsCommomEventController")
    public ResultData ivsCommomEventController(@RequestBody List<StructuredVO> structureds){
        log.info("传输参数为{}",structureds);
        return  ResultData.normal(structureds);
    }
}