package com.ruoyi.vehicleInformationCollectionReview.mapper;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.ruoyi.vehicleInformationCollectionReview.pojo.VehicleInformationCollectionReview;
|
import org.apache.ibatis.annotations.Mapper;
|
|
/**
|
* @author 27233
|
* @description 针对表【vehicle_information_collection_review】的数据库操作Mapper
|
* @createDate 2026-01-06 19:50:48
|
* @Entity com.ruoyi.pojo.VehicleInformationCollectionReview
|
*/
|
@Mapper
|
public interface VehicleInformationCollectionReviewMapper extends BaseMapper<VehicleInformationCollectionReview> {
|
|
}
|