LandRoadVeMapper.java
574 字节
package com.sy.mapper;
import com.sy.model.LandRoadVe;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Component;
@Component
public interface LandRoadVeMapper {
int deleteByPrimaryKey(String id);
int insert(LandRoadVe record);
int insertSelective(LandRoadVe record);
LandRoadVe selectByPrimaryKey(String id);
int updateByPrimaryKeySelective(LandRoadVe record);
int updateByPrimaryKey(LandRoadVe record);
//根据车牌号查询
LandRoadVe selectByFrameNo(@Param("domesticLisenceNo") String frameNo);
}