1
2
3
4
5
6
7
8
9
10
11
12
13
| package com.fgkj.mapper.impl;
|
| import java.util.List;
|
| import com.fgkj.dto.Fbsdev_Statechange_inf;
| import org.springframework.stereotype.Repository;
|
| public interface Fbsdev_Statechange_infMapper{
|
| //根据设备id,时间等条件筛选设备
| public List serchByCondition(Fbsdev_Statechange_inf obj);
|
| }
|
|