qushaowei
2023-10-07 3858c775f565df000a45afd9a0c38c7b6bb39069
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
package org.jeecg.modules.eam.service;
import java.util.List;
 
import org.jeecg.modules.eam.entity.ProductionLine;
import com.baomidou.mybatisplus.extension.service.IService;
/**
 * 
 * @ClassName: IProductionLineService
 * @Description: 产线 业务接口
 * @author Wang Mingchao
 * @date 2020-11-05 02:32:40
 */
public interface IProductionLineService extends IService<ProductionLine> {
    
    boolean removeByAreaId(String areaId);
    
    boolean removeByAreaIds(String[] areaIds);
    
    boolean removeBySiteId(String siteId);
    
    boolean removeBySiteIds(String[] siteIds);
    
    boolean activeByAreaId(String areaId, String status);
    
    boolean activeByAreaIds(String[] areaIds, String status);
    
    boolean activeBySiteId(String siteId, String status);
    
    List<ProductionLine> listByAreaId(String areaId);
    
}