package com.aps.core.mapper; import com.aps.core.domain.ApsGasPipingPlan; import org.apache.ibatis.annotations.Mapper; import java.util.List; /** * 气体管路计划管理Mapper接口 * * @author wwj * @date 2025-04-09 */ @Mapper public interface ApsGasPipingPlanMapper { /** * 查询气体管路计划管理 * * @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 id 气体管路计划管理主键 * @return 结果 */ public int deleteApsGasPipingPlanById(String id); /** * 批量删除气体管路计划管理 * * @param ids 需要删除的数据主键集合 * @return 结果 */ public int deleteApsGasPipingPlanByIds(String[] ids); /** * 批量删除气体管路计划管理 * @return 结果 */ int removeAllPlans(); /** * 获取气体管路工单关联工序数据 * @param apsGasPipingPlan * @return */ public List selectApsGasPipingPlanWithProcess(ApsGasPipingPlan apsGasPipingPlan); }