zm
2024-10-23 4b4eb27dcc051acba3841e7205dc4a593924362d
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/5/7 10:07
 * @description: 用车看板
 */
public interface ICarChartservice {
 
    String saveCarChart(FieldSetEntity fs);
 
    boolean deleteCarChart(FieldSetEntity fs);
 
}