Pu Zhibing
2 天以前 f5da7281ee8fed938198afcd33a2a619f08a37f0
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);
}