22 lines
969 B
XML
22 lines
969 B
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
|
|
<mapper namespace="com.sercurityControl.proteam.mapper.BnsVideoMapper">
|
|
<!--查询球机国标编码校验-->
|
|
<select id="findBeanByMac" resultType="com.sercurityControl.proteam.domain.BallGbBean">
|
|
SELECT device_name name, mac_id macId,puid,gb_code gbNumber,pass_way type,state isOnline,t_code tCode
|
|
FROM t_device
|
|
where is_flag=0 and mac_id=#{macId}
|
|
</select>
|
|
<select id="getTcodeList" resultType="String" parameterType="java.util.List">
|
|
SELECT t_code tCode
|
|
FROM t_device
|
|
where is_flag=0
|
|
and puid in(
|
|
<foreach collection="list" item="item" separator=",">
|
|
#{item}
|
|
</foreach>
|
|
)
|
|
</select>
|
|
|
|
|
|
</mapper> |