LandRoadVeMapper.java 502 字节
package com.sy.mapper;

import com.sy.model.LandRoadVe;
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(String frameNo);
}