24 lines
557 B
Plaintext
24 lines
557 B
Plaintext
package com.sercurityControl.proteam.service;
|
|
|
|
import com.securityControl.common.core.web.domain.AjaxResult;
|
|
import com.sercurityControl.proteam.domain.vo.DeviceLedGer;
|
|
|
|
|
|
import java.util.List;
|
|
|
|
public interface DeviceLedgerService {
|
|
/**
|
|
* 查询设备流转信息
|
|
* @param deviceLedGer
|
|
* @return
|
|
*/
|
|
List<DeviceLedGer> getDeviceLedgerList(DeviceLedGer deviceLedGer);
|
|
|
|
|
|
/**
|
|
* 查询设备总数,在线,不在线,长期不在线数量
|
|
* @return
|
|
*/
|
|
AjaxResult getDeviceNum(DeviceLedGer deviceLedGer);
|
|
}
|