package com.boying.mapper;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.boying.entity.EnterPark;
|
import com.boying.entity.ErrorLog;
|
import org.apache.ibatis.annotations.Mapper;
|
|
/**
|
* @author kdq
|
* @version 1.0.0
|
* @ClassName ErrorLogMapper.java
|
* @Description TODO
|
* @createTime 2023年04月24日 15:51:00
|
*/
|
@Mapper
|
public interface ErrorLogMapper extends BaseMapper<ErrorLog> {
|
}
|