Lius
6 天以前 7d2ae4c2fd8d45f0896b9accf84ff4177638fbcd
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
37
38
39
40
41
42
43
44
45
46
package org.jeecg.modules.eam.controller;
 
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import lombok.extern.slf4j.Slf4j;
import org.jeecg.common.api.vo.Result;
import org.jeecg.common.system.base.controller.JeecgController;
import org.jeecg.modules.eam.entity.EamTechnicalStatusDeactivateDetail;
import org.jeecg.modules.eam.service.IEamTechnicalStatusDeactivateDetailService;
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;
 
/**
 * @Description: 停用加工设备申请单明细
 * @Author: jeecg-boot
 * @Date: 2025-07-09
 * @Version: V1.0
 */
@Slf4j
@Api(tags = "停用加工设备申请单明细")
@RestController
@RequestMapping("/eam/eamTechnicalStatusDeactivateDetail")
public class EamTechnicalStatusDeactivateDetailController extends JeecgController<EamTechnicalStatusDeactivateDetail, IEamTechnicalStatusDeactivateDetailService> {
    @Autowired
    private IEamTechnicalStatusDeactivateDetailService deactivateDetailService;
 
    /**
     * 列表查询
     *
     * @param applicationId
     * @return
     */
    @ApiOperation(value = "停用加工设备申请单明细-列表查询", notes = "停用加工设备申请单明细-列表查询")
    @GetMapping(value = "/queryList")
    public Result<?> queryList(@RequestParam("applicationId") String applicationId) {
        List<EamTechnicalStatusDeactivateDetail> list = deactivateDetailService.queryList(applicationId);
        return Result.OK(list);
    }
 
 
}