c83b5b39
Liu Haoyu
项目创建, 集成spring-se...
|
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
package com.objecteye.mapper;
import com.objecteye.entity.SyVehicleModel;
import com.objecteye.entity.SyVehicleModelExample;
import com.objecteye.pojo.NameValue;
import org.apache.ibatis.annotations.Param;
import java.util.List;
public interface SyVehicleModelMapper {
int countByExample(SyVehicleModelExample example);
int deleteByExample(SyVehicleModelExample example);
int deleteByPrimaryKey(Integer id);
int insert(SyVehicleModel record);
int insertSelective(SyVehicleModel record);
List<SyVehicleModel> selectByExample(SyVehicleModelExample example);
SyVehicleModel selectByPrimaryKey(Integer id);
int updateByExampleSelective(@Param("record") SyVehicleModel record, @Param("example") SyVehicleModelExample example);
int updateByExample(@Param("record") SyVehicleModel record, @Param("example") SyVehicleModelExample example);
int updateByPrimaryKeySelective(SyVehicleModel record);
int updateByPrimaryKey(SyVehicleModel record);
List<String> selectDisplayForInitials();
List<String> selectDisplayForBrand(@Param("initals") String initals);
List<String> selectDisplayForSubbrand(@Param("brand") String brand);
List<String> selectDisplayForBirthday(@Param("subbrand") String subbrand);
List<String> displayVehicleTypeList();
List<NameValue> displayVehicleColorList();
List<NameValue> displayVehiclePlateTypeList();
List<String> displayVehicleNjbNumberList();
}
|