Blame view

zteits-job/src/main/java/com/zteits/job/mapper/smapper/TpPBerthsSMapper.java 352 Bytes
83f7336e   zhaowg   增加方格地磁状态获取空闲车位数据推送
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  package com.zteits.job.mapper.smapper;
  
  import org.apache.ibatis.annotations.Param;
  
  public interface TpPBerthsSMapper {
      /**
       * 根据停车场编号和条件查询空闲车位总数
       * @param plNo
       * @return
       * 2017830 zhaowg
       */
      Long queryFreeBerthNum(@Param("plNo") String plNo, @Param("where")String where);
  
  }