whycrzg
2021-02-23 351b9a53cb9ecebdf8f79db0117f540d9c42c2a4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.fgkj.mapper.impl.ram;
 
import com.fgkj.dto.JhState;
import org.apache.ibatis.annotations.Select;
 
import java.util.List;
 
public interface JhStateMapper{
 
    //根据设备id查询设备均衡供电模块的信息
    @Select(" select * from db_ram_db.tb_61850_jhstate where dev_id=#{dev_id} ")
    public List<JhState> serchByCondition(JhState jh);
 
    /*public static void main(String[] args) {
        JhStateImpl jimpl=new JhStateImpl();
        JhState jh=new JhState();
        jh.setDev_id(618500001);
        List list=jimpl.serchByCondition(jh);
        System.out.println(list.size());
    }*/
}