mitao
2025-02-21 31573d6180d15ef65ed0df9c2732495f40b12663
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
27
28
29
30
31
package com.chuangongzhijia.huacheng_union_applets.api;
 
import com.panzhihua.common.model.vos.ResultData;
import com.panzhihua.common.model.vos.union.StructuredVO;
import com.panzhihua.common.service.community.CommunityUnionService;
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 javax.annotation.Resource;
import java.util.List;
 
 
@Slf4j
@Api(tags = {"新闻基本面,技术面相关接口"})
@RestController
@RequestMapping("/roomck-web")
public class RoomckWebApi {
 
    @Resource
    private CommunityUnionService communityUnionService;
 
    @PostMapping("/roomck/ivsCommomEventController")
    public ResultData ivsCommomEventController(@RequestBody List<StructuredVO> structureds){
        log.info("传输参数为{}",structureds);
        return  communityUnionService.ivsCommomEventController(structureds);
    }
}