- Remove klp-pocket module entirely (acid/galvanize1/common) - Remove klp-da OEE files (depended on pocket) - Remove klp-wms Dr* files (double-rack) - Strip double-rack code from WmsCoilPendingActionServiceImpl - Remove acid/galvanize1/double-rack datasources from prod/dev yml - Remove sql-server-api, da.oee, oee.acid config
32 lines
948 B
Java
32 lines
948 B
Java
package com.fad.controller;
|
|
|
|
import com.fad.common.core.domain.R;
|
|
import com.fad.domain.bo.WmsAnnealPerformanceBo;
|
|
import com.fad.domain.vo.anneal.WmsAnnealPerformanceVo;
|
|
import com.fad.service.IWmsAnnealPerformanceService;
|
|
import lombok.RequiredArgsConstructor;
|
|
import org.springframework.validation.annotation.Validated;
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
/**
|
|
* 炉火实绩
|
|
*
|
|
* @author klp
|
|
* @date 2026-03-14
|
|
*/
|
|
@Validated
|
|
@RequiredArgsConstructor
|
|
@RestController
|
|
@RequestMapping("/wms/anneal/performance")
|
|
public class WmsAnnealPerformanceController {
|
|
|
|
private final IWmsAnnealPerformanceService performanceService;
|
|
|
|
@GetMapping
|
|
public R<WmsAnnealPerformanceVo> getPerformance(WmsAnnealPerformanceBo bo) {
|
|
return R.ok(performanceService.queryPerformance(bo));
|
|
}
|
|
}
|