28 lines
552 B
Plaintext
28 lines
552 B
Plaintext
|
|
package com.sercurityControl.proteam.mapper;
|
||
|
|
|
||
|
|
import com.sercurityControl.proteam.domain.BallGbBean;
|
||
|
|
import org.apache.ibatis.annotations.Param;
|
||
|
|
import org.springframework.stereotype.Repository;
|
||
|
|
|
||
|
|
import java.util.List;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* e基建球机状态接口获取
|
||
|
|
*/
|
||
|
|
@Repository(value = "BnsVideoMapper")
|
||
|
|
public interface BnsVideoMapper {
|
||
|
|
/**
|
||
|
|
* 国标编码校验
|
||
|
|
* @param macId
|
||
|
|
* @return
|
||
|
|
*/
|
||
|
|
List<BallGbBean> findBeanByMac(@Param("macId") String macId);
|
||
|
|
|
||
|
|
|
||
|
|
List<String> getTcodeList(@Param("list") List<String> list);
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
}
|