“linengliang”
2023-11-21 f4185f3c8cf71d613eb1a15928f2d8cf60027d68
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package org.jeecg.modules.eam.service;
 
import org.jeecg.modules.eam.entity.Stream;
import com.baomidou.mybatisplus.extension.service.IService;
 
import java.io.Serializable;
import java.util.Collection;
 
/**
 * @Description: 设备ABC评价
 * @Author: jeecg-boot
 * @Date:   2023-11-21
 * @Version: V1.0
 */
public interface IStreamService extends IService<Stream> {
 
    /**
     * 删除一对多
     *
     * @param id
     */
    public void delMain (String id);
 
    /**
     * 批量删除一对多
     *
     * @param idList
     */
    public void delBatchMain (Collection<? extends Serializable> idList);
 
 
}