|
package com.muyu.mapper;
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import com.muyu.domain.Vehicle;
|
|
|
|
/**
|
|
* <p>
|
|
* 车辆 Mapper 接口
|
|
* </p>
|
|
*
|
|
* @author DongZeLiang
|
|
* @since 2022-07-05
|
|
*/
|
|
public interface VehicleMapper extends BaseMapper<Vehicle> {
|
|
|
|
}
|