提交 | 用户 | 时间
|
58d006
|
1 |
package com.mandi.fendan.mapper; |
A |
2 |
|
|
3 |
import org.apache.ibatis.annotations.Delete; |
|
4 |
import org.apache.ibatis.annotations.Insert; |
|
5 |
import org.apache.ibatis.annotations.Select; |
|
6 |
import org.apache.ibatis.annotations.Update; |
|
7 |
|
|
8 |
import com.mandi.fendan.persist.Fd_VehicleInfo; |
|
9 |
@Deprecated |
|
10 |
public interface Fd_VehicleInfoMapper { |
|
11 |
|
|
12 |
@Select("select a.* from fd_vehicleinfo a where a.xstdNo=#{xstdNo}") |
|
13 |
public Fd_VehicleInfo get(String xstdNo); |
|
14 |
@Delete("delete from fd_vehicleinfo a where xstdNo=#{xstdNo}") |
|
15 |
public int del(String xstdNo); |
|
16 |
@Update("update fd_vehicleinfo set vehicleList=#{vehicleList} where xstdNo=#{xstdNo}") |
|
17 |
public int update(Fd_VehicleInfo fd_vehicle); |
|
18 |
@Insert("insert into fd_vehicleinfo(xstdNo,vehicleList) values (#{xstdNo},#{vehicleList})") |
|
19 |
public int insert(Fd_VehicleInfo fd_vehicle); |
|
20 |
|
|
21 |
} |