feat(WmsMaterialCoilController): 更新统计接口URL路径

- 将trimStatistics接口路径从/trimStatistics修改为/statistics/trimStatistics
- 将categoryWidthStatistics接口路径从/categoryWidthStatistics修改为/statistics/categoryWidthStatistics
- 统一统计类接口的URL命名空间,增强API路径的一致性
This commit is contained in:
2026-03-09 14:10:14 +08:00
parent 194c481e12
commit a8e94ac34d

View File

@@ -462,7 +462,7 @@ public class WmsMaterialCoilController extends BaseController {
* 冷硬卷切边统计
* 按厚度、宽度、切边要求(净边/毛边)统计钢卷数量和重量
*/
@GetMapping("/trimStatistics")
@GetMapping("/statistics/trimStatistics")
public R<List<CoilTrimStatisticsVo>> trimStatistics() {
return R.ok(iWmsMaterialCoilService.getCoilTrimStatistics());
}
@@ -472,7 +472,7 @@ public class WmsMaterialCoilController extends BaseController {
* 纵坐标:热轧卷板、冷硬卷、冷轧卷、镀锌钢卷(毛化)、镀锌管料、镀锌钢卷(未光整)
* 横坐标净边1000、1200、1220、1250 + 其他宽度及毛边 + 合计
*/
@GetMapping("/categoryWidthStatistics")
@GetMapping("/statistics/categoryWidthStatistics")
public R<List<CategoryWidthStatisticsVo>> categoryWidthStatistics() {
return R.ok(iWmsMaterialCoilService.getCategoryWidthStatistics());
}