package cn.iocoder.yudao.module.mes.service.home;
|
|
import cn.iocoder.yudao.module.mes.controller.admin.home.vo.MesBagCodeHomeSummaryRespVO;
|
import cn.iocoder.yudao.module.mes.controller.admin.home.vo.MesBagCodeHomeTrendRespVO;
|
|
import java.util.List;
|
|
/**
|
* MES 基础数据与一袋一码 首页统计 Service 接口
|
*
|
* @author 超级管理员
|
*/
|
public interface MesBagCodeHomeStatisticsService {
|
|
/**
|
* 获得首页汇总统计(数量 + 状态分布)
|
*
|
* @return 汇总统计数据
|
*/
|
MesBagCodeHomeSummaryRespVO getHomeSummary();
|
|
/**
|
* 获得袋码生成趋势(近 N 天)
|
*
|
* @param days 天数
|
* @return 每天的袋码生成数量
|
*/
|
List<MesBagCodeHomeTrendRespVO> getBagCodeTrend(Integer days);
|
|
}
|