zouyu
6 天以前 0124e8abc6639ec85a54b0fd1d96456260c8c702
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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> {
 
}