增加车辆报损

This commit is contained in:
2025-08-24 15:57:02 +08:00
parent 0b8d3d8675
commit ad399295c1
11 changed files with 313 additions and 8 deletions

View File

@ -0,0 +1,16 @@
package com.sczx.car.mapper;
import com.sczx.car.po.CarDamagePO;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/**
* <p>
* 车辆报损记录表 Mapper 接口
* </p>
*
* @author zhangli
* @since 2025-08-24 15:40:46
*/
public interface CarDamageMapper extends BaseMapper<CarDamagePO> {
}