1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| package com.stylefeng.guns.modular.system.service;
|
| import com.stylefeng.guns.modular.system.model.TCheckCarExplain;
| import com.baomidou.mybatisplus.service.IService;
|
| /**
| * <p>
| * 代检车说明内容表 服务类
| * </p>
| *
| * @author mitao
| * @since 2025-07-27
| */
| public interface ITCheckCarExplainService extends IService<TCheckCarExplain> {
|
| void saveOrUpdate(TCheckCarExplain tCheckCarExplain);
| }
|
|