hjg
2024-10-30 8cf23534166c07e711aac2a25911ada317ba01f0
提交 | 用户 | 时间
58d006 1 package com.mandi.fendan.mapper;
A 2
3 import java.util.List;
4 import java.util.Map;
5
6 import org.apache.ibatis.annotations.Delete;
7 import org.apache.ibatis.annotations.Insert;
8 import org.apache.ibatis.annotations.Select;
9 import org.apache.ibatis.annotations.Update;
10
11 import com.mandi.fendan.persist.Fd_Gbxstd;
12
13 public interface Fd_GbxstdMapper {
14     
15     @Insert("insert into fd_gbxstd (xstdNo,companyNo,td_gbsj,td_gbr,td_gbsl,td_gbzl,vehicleId,isHSR) values (#{xstdNo},#{companyNo},#{td_gbsj},#{td_gbr},#{td_gbsl},#{td_gbzl},#{vehicleId},#{isHSR}) ")
16     public int insert(Fd_Gbxstd xstd);
17     @Update("update fd_gbxstd set companyNo=#{companyNo},td_gbsj=#{td_gbsj},td_gbr=#{td_gbr},td_gbsl=#{td_gbsl},td_gbzl=#{td_gbzl},vehicleId=#{vehicleId},isHSR=#{isHSR} where xstdNo=#{xstdNo}")
18     public int update(Fd_Gbxstd xstd);
19     @Delete("delete from fd_gbxstd where xstdNo=#{xstdNo}")
20     public int del(String xstdNo);
21     @Select("select * from fd_gbxstd where xstdNo=#{xstdNo}")
22     public Fd_Gbxstd get(String xstdNo);
23     
24     public int counts(Map<String, Object> pmp);
25     
26     public List<Map<String, Object>> getList(Map<String, Object> mp);
27     
28 }