chore: initial commit from klp-oa @ 0.8.3, renamed to fad-l3

This commit is contained in:
2026-06-08 15:31:31 +08:00
commit 5cd31efef1
4292 changed files with 581410 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
package com.klp.controller;
import com.klp.common.core.domain.R;
import com.klp.domain.bo.WmsAnnealPerformanceBo;
import com.klp.domain.vo.anneal.WmsAnnealPerformanceVo;
import com.klp.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));
}
}