IdenCommunityMapper.java 579 B

1234567891011121314151617
  1. package com.iden.common.mapper;
  2. import com.iden.common.entity.IdenCommunity;
  3. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  4. import org.apache.ibatis.annotations.Select;
  5. /**
  6. * 小区表(IdenCommunity)表数据库访问层
  7. *
  8. * @author makejava
  9. * @since 2021-12-22 17:23:45
  10. */
  11. public interface IdenCommunityMapper extends BaseMapper<IdenCommunity> {
  12. @Select(value = "select * from iden_community where id =(select COMMUNITY_ID from iden_camera where ip=#{ip,jdbcType = VARCHAR})")
  13. public IdenCommunity queryRtspServiceUrl(String ip);
  14. }