Blame view

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