sfd
2025-05-26 2a64b537e8e3bce9ce030585a3da17d48379c0ad
aps-modules/aps-core/src/main/java/com/aps/core/service/IApsPlantService.java
@@ -2,6 +2,7 @@
import java.util.List;
import com.aps.core.domain.ApsPlant;
import com.baomidou.mybatisplus.extension.service.IService;
/**
 * 工厂管理Service接口
@@ -9,7 +10,7 @@
 * @author ruoyi
 * @date 2025-04-14
 */
public interface IApsPlantService
public interface IApsPlantService  extends IService<ApsPlant>
{
    /**
     * 查询工厂管理
@@ -17,7 +18,7 @@
     * @param id 工厂管理主键
     * @return 工厂管理
     */
    public ApsPlant selectApsPlantById(Long id);
    public ApsPlant selectApsPlantById(String id);
    /**
     * 查询工厂管理列表
@@ -49,7 +50,7 @@
     * @param ids 需要删除的工厂管理主键集合
     * @return 结果
     */
    public int deleteApsPlantByIds(Long[] ids);
    public int deleteApsPlantByIds(String[] ids);
    /**
     * 删除工厂管理信息
@@ -57,5 +58,5 @@
     * @param id 工厂管理主键
     * @return 结果
     */
    public int deleteApsPlantById(Long id);
    public int deleteApsPlantById(String id);
}