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.ParkFreeBerth;
import com.zteits.job.domain.ParkFreeBerthExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
public interface ParkFreeBerthMapper {
long countByExample(ParkFreeBerthExample example);
int deleteByExample(ParkFreeBerthExample example);
int deleteByPrimaryKey(Long id);
int insert(ParkFreeBerth record);
int insertSelective(ParkFreeBerth record);
List<ParkFreeBerth> selectByExample(ParkFreeBerthExample example);
ParkFreeBerth selectByPrimaryKey(Long id);
int updateByExampleSelective(@Param("record") ParkFreeBerth record, @Param("example") ParkFreeBerthExample example);
int updateByExample(@Param("record") ParkFreeBerth record, @Param("example") ParkFreeBerthExample example);
int updateByPrimaryKeySelective(ParkFreeBerth record);
int updateByPrimaryKey(ParkFreeBerth record);
}
|