package com.aps.core.service; import java.util.List; import java.util.Set; import com.aps.core.domain.ApsShop; import org.jetbrains.annotations.NotNull; /** * 车间Service接口 * * @author ruoyi * @date 2025-04-14 */ public interface IApsShopService { /** * 查询车间 * * @param id 车间主键 * @return 车间 */ public ApsShop selectApsShopById(String id); /** * 查询车间列表 * * @param apsShop 车间 * @return 车间集合 */ public List selectApsShopList(ApsShop apsShop); /** * 新增车间 * * @param apsShop 车间 * @return 结果 */ public int insertApsShop(ApsShop apsShop); /** * 修改车间 * * @param apsShop 车间 * @return 结果 */ public int updateApsShop(ApsShop apsShop); /** * 批量删除车间 * * @param ids 需要删除的车间主键集合 * @return 结果 */ public int deleteApsShopByIds(String[] ids); /** * 删除车间信息 * * @param id 车间主键 * @return 结果 */ public int deleteApsShopById(String id); List findAllShops(); List findShopByFactory(String orgCode); List findShopByCodes(@NotNull Set collect); }