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.EamTechnicalStatusChangeDetail;
|
import org.jeecg.modules.eam.service.IEamTechnicalStatusChangeDetailService;
|
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/eamTechnicalStatusChangeDetail")
|
public class EamTechnicalStatusChangeDetailController extends JeecgController<EamTechnicalStatusChangeDetail, IEamTechnicalStatusChangeDetailService> {
|
@Autowired
|
private IEamTechnicalStatusChangeDetailService orderDetailService;
|
|
/**
|
* 一次加载
|
*
|
* @param orderId
|
* @return
|
*/
|
@ApiOperation(value = "技术状态变更申请明细-不分页列表查询", notes = "技术状态变更申请明细-不分页列表查询")
|
@GetMapping(value = "/queryList")
|
public Result<?> queryList(@RequestParam("orderId") String orderId) {
|
List<EamTechnicalStatusChangeDetail> list = orderDetailService.queryList(orderId);
|
return Result.OK(list);
|
}
|
}
|