潘志宝
2024-09-26 1373561069f7e19383dbc178c19787c4b3f0df3b
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.model.mcs.pre.controller.admin;
 
import com.iailab.framework.common.pojo.CommonResult;
import com.iailab.module.model.mcs.pre.service.MmItemOutputService;
import com.iailab.module.model.mcs.pre.dto.MmItemOutputDTO;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
 
import java.util.List;
import java.util.Map;
 
import static com.iailab.framework.common.pojo.CommonResult.success;
 
/**
 * @author PanZhibao
 * @date 2021年07月23日 11:13
 */
@RestController
@RequestMapping("/model/pre/item-output")
public class MmItemOutputController {
 
    @Autowired
    private MmItemOutputService mmItemOutputService;
 
    /**
     * 预测项输出列表
     */
    @GetMapping("/list/all")
    public CommonResult<List<MmItemOutputDTO>> queryAll(@RequestParam Map<String, Object> params){
        List<MmItemOutputDTO> data = mmItemOutputService.queryList(params);
        return success(data);
    }
}