3a404b2a
zhaowg
空闲车位获取和推送
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
package com.zteits.job.mapper;
import com.zteits.job.domain.ParkingLot;
import com.zteits.job.domain.ParkingLotExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
public interface ParkingLotMapper {
long countByExample(ParkingLotExample example);
int deleteByExample(ParkingLotExample example);
int deleteByPrimaryKey(Long plId);
int insert(ParkingLot record);
int insertSelective(ParkingLot record);
List<ParkingLot> selectByExample(ParkingLotExample example);
ParkingLot selectByPrimaryKey(Long plId);
int updateByExampleSelective(@Param("record") ParkingLot record, @Param("example") ParkingLotExample example);
int updateByExample(@Param("record") ParkingLot record, @Param("example") ParkingLotExample example);
int updateByPrimaryKeySelective(ParkingLot record);
int updateByPrimaryKey(ParkingLot record);
}
|