杜洪波
2024-06-06 7f230f4a07f67e81ab49e81c4154b3586e2c79ec
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 9:20
 * @description: 车辆事故记录
 */
public interface IVehicleAccidentService {
 
    String saveVehicleAccident(FieldSetEntity fs);
 
    boolean deleteVehicleAccident(FieldSetEntity fs);
 
}