| | |
| | | |
| | | import com.genersoft.iot.vmp.netty.business.entity.TalkBackEquipment; |
| | | import com.genersoft.iot.vmp.netty.business.entity.TalkBackEquipmentRecord; |
| | | import org.apache.ibatis.annotations.Insert; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Select; |
| | | import org.apache.ibatis.annotations.SelectKey; |
| | | |
| | | /** |
| | | * 对讲设备mapper映射层 |
| | |
| | | * @param code |
| | | * @return |
| | | */ |
| | | @Select("select * from sys_talk_back_equipment where code = #{code}") |
| | | @Select("select * from sys_talk_back_equipment where terminal_number = #{code}") |
| | | TalkBackEquipment getTalkBackEquipment(String code); |
| | | |
| | | /** |