济菏高速数据中心代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

32 lines
750 B

package com.zc.business.service;
/**
* DcMetricsService 接口定义了与指标相关的服务操作。
*/
public interface IDcMetricsService {
/**
* 获取设备数量。
*
* @return 设备数量,返回类型为整数。
*/
int deviceCount();
/**
* 获取产品数量。
* 该方法用于统计当前系统中的产品总数,不需要传入任何参数。
*
* @return 产品数量,返回类型为整数。
*/
int productCount();
/**
* 获取设备异常数量
* 该方法用于统计当前系统中的异常设备总数,不需要传入任何参数。
*
* @return 返回设备异常数量,类型为int。
*/
int deviceAbnormalCount();
}