liuxiaolong
2019-05-06 0bc4f4c791437b39b8c30624f5c21f8c855dc61d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package com.cloud.retrieve.dao;
 
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Component;
 
import java.util.Map;
 
/**
 * 查询 集群 或设备信息
 */
@Mapper
@Component
public interface CulOrDevDao {
 
    // 根据culId查询,无则查询 首一条
    Map<String,Object> findById(@Param(value = "culId") String culId);
 
    //查询单人详情 wp 19-02-12 作废
    Map<String,Object> selectPersonDetailById(@Param(value = "personId") String personId);
 
    // 根据IndeviceId查询,无则查询 首一条
    Map<String,Object> findByIndeviceId(String indeviceid);
 
}