zouyu
5 天以前 dcd4f41b63ac7a103b960062434dad13a3e419b7
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> {
 
}