package com.mandi.fendan.mapper; import java.util.List; import java.util.Map; import org.apache.ibatis.annotations.Delete; import org.apache.ibatis.annotations.Insert; import org.apache.ibatis.annotations.Select; import org.apache.ibatis.annotations.Update; import com.mandi.fendan.persist.Fd_Gbxstd; public interface Fd_GbxstdMapper { @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}) ") public int insert(Fd_Gbxstd xstd); @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}") public int update(Fd_Gbxstd xstd); @Delete("delete from fd_gbxstd where xstdNo=#{xstdNo}") public int del(String xstdNo); @Select("select * from fd_gbxstd where xstdNo=#{xstdNo}") public Fd_Gbxstd get(String xstdNo); public int counts(Map pmp); public List> getList(Map mp); }