1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package com.product.administration.service.ide;
|
| import com.product.core.entity.FieldSetEntity;
|
| /**
| * @author: ZhouJie
| * @date: 2021/4/29 16:02
| * @description: 车辆情况检查记录
| */
| public interface IVehicleInspectionService {
|
| String saveVehicleInspection(FieldSetEntity fs);
|
| boolean deleteVehicleInspection(FieldSetEntity fs);
|
| }
|
|