32 lines
807 B
Java
32 lines
807 B
Java
package com.klp.controller;
|
|
|
|
import com.klp.common.core.domain.R;
|
|
import com.klp.domain.vo.anneal.WmsAnnealOverviewVo;
|
|
import com.klp.service.IWmsAnnealOverviewService;
|
|
import lombok.RequiredArgsConstructor;
|
|
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
|
|
*/
|
|
@RequiredArgsConstructor
|
|
@RestController
|
|
@RequestMapping("/wms/anneal/overview")
|
|
public class WmsAnnealOverviewController {
|
|
|
|
private final IWmsAnnealOverviewService overviewService;
|
|
|
|
/**
|
|
* 总览数据
|
|
*/
|
|
@GetMapping
|
|
public R<WmsAnnealOverviewVo> getOverview() {
|
|
return R.ok(overviewService.queryOverview());
|
|
}
|
|
}
|