审查视图

src/main/java/com/sy/mapper/LandRoadVeMapper.java 574 字节
zhangFan authored
1 2 3
package com.sy.mapper;

import com.sy.model.LandRoadVe;
zhangFan authored
4
import org.apache.ibatis.annotations.Param;
zhangFan authored
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
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);
    //根据车牌号查询
zhangFan authored
21
    LandRoadVe selectByFrameNo(@Param("domesticLisenceNo") String frameNo);
zhangFan authored
22
}