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);
|
|
}
|