1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package com.stylefeng.guns.modular.system.dao;
|
| import com.stylefeng.guns.modular.system.model.TCheckCarExplain;
| import com.baomidou.mybatisplus.mapper.BaseMapper;
|
| /**
| * <p>
| * 代检车说明内容表 Mapper 接口
| * </p>
| *
| * @author mitao
| * @since 2025-07-27
| */
| public interface TCheckCarExplainMapper extends BaseMapper<TCheckCarExplain> {
|
| }
|
|