| | |
| | | |
| | | import java.util.List; |
| | | import com.aps.core.domain.ApsPlant; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | |
| | | /** |
| | | * 工厂管理Service接口 |
| | |
| | | * @author ruoyi |
| | | * @date 2025-04-14 |
| | | */ |
| | | public interface IApsPlantService |
| | | public interface IApsPlantService extends IService<ApsPlant> |
| | | { |
| | | /** |
| | | * 查询工厂管理 |
| | |
| | | * @param id 工厂管理主键 |
| | | * @return 工厂管理 |
| | | */ |
| | | public ApsPlant selectApsPlantById(Long id); |
| | | public ApsPlant selectApsPlantById(String id); |
| | | |
| | | /** |
| | | * 查询工厂管理列表 |
| | |
| | | * @param ids 需要删除的工厂管理主键集合 |
| | | * @return 结果 |
| | | */ |
| | | public int deleteApsPlantByIds(Long[] ids); |
| | | public int deleteApsPlantByIds(String[] ids); |
| | | |
| | | /** |
| | | * 删除工厂管理信息 |
| | |
| | | * @param id 工厂管理主键 |
| | | * @return 结果 |
| | | */ |
| | | public int deleteApsPlantById(Long id); |
| | | public int deleteApsPlantById(String id); |
| | | } |