package com.aps.core.service;
|
|
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 extends IService<ApsPlant>
|
{
|
/**
|
* 查询工厂管理
|
*
|
* @param id 工厂管理主键
|
* @return 工厂管理
|
*/
|
public ApsPlant selectApsPlantById(String id);
|
|
/**
|
* 查询工厂管理列表
|
*
|
* @param apsPlant 工厂管理
|
* @return 工厂管理集合
|
*/
|
public List<ApsPlant> selectApsPlantList(ApsPlant apsPlant);
|
|
/**
|
* 新增工厂管理
|
*
|
* @param apsPlant 工厂管理
|
* @return 结果
|
*/
|
public int insertApsPlant(ApsPlant apsPlant);
|
|
/**
|
* 修改工厂管理
|
*
|
* @param apsPlant 工厂管理
|
* @return 结果
|
*/
|
public int updateApsPlant(ApsPlant apsPlant);
|
|
/**
|
* 批量删除工厂管理
|
*
|
* @param ids 需要删除的工厂管理主键集合
|
* @return 结果
|
*/
|
public int deleteApsPlantByIds(String[] ids);
|
|
/**
|
* 删除工厂管理信息
|
*
|
* @param id 工厂管理主键
|
* @return 结果
|
*/
|
public int deleteApsPlantById(String id);
|
}
|