30 lines
792 B
Plaintext
30 lines
792 B
Plaintext
|
|
package com.sercurityControl.proteam.mapper;
|
||
|
|
|
||
|
|
import com.securityControl.common.core.web.domain.AjaxResult;
|
||
|
|
import com.sercurityControl.proteam.domain.vo.DeviceLedGer;
|
||
|
|
import com.sercurityControl.proteam.domain.vo.DeviceNum;
|
||
|
|
import org.apache.ibatis.annotations.MapKey;
|
||
|
|
import org.springframework.stereotype.Repository;
|
||
|
|
|
||
|
|
import java.util.List;
|
||
|
|
import java.util.Map;
|
||
|
|
|
||
|
|
@Repository(value = "DeviceLedgerMapper")
|
||
|
|
public interface DeviceLedgerMapper {
|
||
|
|
/**
|
||
|
|
* 获取设备流帐信息
|
||
|
|
*
|
||
|
|
* @param deviceLedGer 条件
|
||
|
|
* @return 集合
|
||
|
|
**/
|
||
|
|
List<DeviceLedGer> getDeviceLedgerList(DeviceLedGer deviceLedGer);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 获取设备数量
|
||
|
|
*
|
||
|
|
* @return 集合
|
||
|
|
**/
|
||
|
|
@MapKey("")
|
||
|
|
List<Map<String, Object>> getDeviceNum(DeviceLedGer deviceLedGer);
|
||
|
|
}
|