houzhongjian
2024-07-23 a6de490948278991e47952e90671ddba4555e9a2
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
32
33
34
35
36
package com.iailab.module.prod.controller;
 
import com.iailab.framework.common.pojo.CommonResult;
import com.iailab.module.prod.dto.PageCharsDTO;
import com.iailab.module.prod.service.PageCharsService;
import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.tags.Tag;
import javax.annotation.Resource;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
 
import java.util.List;
 
/**
 * @author DongYukun
 * @Description
 * @createTime 2024年5月10日 15:06:00
 */
@RestController
@RequestMapping("/analysis/raw")
@Tag(name = "原煤趋势分析")
public class PageCharsController {
 
    @Resource
    PageCharsService pageCharsService;
 
    @GetMapping("{page}")
    @Operation(summary = "原煤趋势分析数据")
    public CommonResult<List<PageCharsDTO>> get(@PathVariable("page") String page) {
        List<PageCharsDTO> dtoList = pageCharsService.getData(page);
 
        return new CommonResult<List<PageCharsDTO>>().setData(dtoList);
    }
}