package com.aps.core.service; import java.util.List; import com.aps.core.domain.ApsGasPipingPlan; import com.aps.core.domain.ApsGasPipingPlanTemp; /** * 气体管路计划管理Service接口 * * @author wwj * @date 2025-04-09 */ public interface IApsGasPipingPlanService { /** * 查询气体管路计划管理 * * @param id 气体管路计划管理主键 * @return 气体管路计划管理 */ public ApsGasPipingPlan selectApsGasPipingPlanById(String id); /** * 查询气体管路计划管理列表 * * @param apsGasPipingPlan 气体管路计划管理 * @return 气体管路计划管理集合 */ public List selectApsGasPipingPlanList(ApsGasPipingPlan apsGasPipingPlan); /** * 新增气体管路计划管理 * * @param apsGasPipingPlan 气体管路计划管理 * @return 结果 */ public int insertApsGasPipingPlan(ApsGasPipingPlan apsGasPipingPlan); /** * 修改气体管路计划管理 * * @param apsGasPipingPlan 气体管路计划管理 * @return 结果 */ public int updateApsGasPipingPlan(ApsGasPipingPlan apsGasPipingPlan); /** * 批量删除气体管路计划管理 * * @param ids 需要删除的气体管路计划管理主键集合 * @return 结果 */ public int deleteApsGasPipingPlanByIds(String[] ids); /** * 删除气体管路计划管理信息 * * @param id 气体管路计划管理主键 * @return 结果 */ public int deleteApsGasPipingPlanById(String id); int confirmGasPiping(ApsGasPipingPlanTemp apsGasPipingPlanTemp); }