package com.boying.mapper;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.boying.entity.OutPark;
|
import org.apache.ibatis.annotations.Mapper;
|
|
/**
|
* @author kdq
|
* @version 1.0.0
|
* @ClassName OutParkMapper.java
|
* @Description TODO
|
* @createTime 2022年11月20日 10:19:00
|
*/
|
@Mapper
|
public interface OutParkMapper extends BaseMapper<OutPark> {
|
}
|