增加车辆查询接口

This commit is contained in:
2025-07-30 22:35:51 +08:00
parent 6a11faaf9a
commit e8d139ee64
12 changed files with 471 additions and 0 deletions

View File

@ -0,0 +1,16 @@
package com.sczx.car.mapper;
import com.sczx.car.po.CarPO;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/**
* <p>
* 电动车信息表 Mapper 接口
* </p>
*
* @author zhangli
* @since 2025-07-30 17:05:03
*/
public interface CarMapper extends BaseMapper<CarPO> {
}