package com.bcxin.ferry.dao.mapper;

import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Mapper;
import com.bcxin.ferry.entity.FerryErrorInfoEntity;
import org.springframework.stereotype.Repository;

 /**
 * 摆渡异常信息表(ferry_error_info)数据库访问层
 * @author : linchunpeng
 * @date : 2024-3-6
 */
@Repository
@Mapper
public interface FerryErrorInfoMapper extends BaseMapper<FerryErrorInfoEntity>{
    
}