package com.aps.core.service;
|
|
import java.util.List;
|
import com.aps.core.domain.ApsGasPipingPlanTemp;
|
|
/**
|
* 气体管路计划管理-临时Service接口
|
*
|
* @author wwj
|
* @date 2025-04-09
|
*/
|
public interface IApsGasPipingPlanTempService
|
{
|
/**
|
* 查询气体管路计划管理-临时
|
*
|
* @param id 气体管路计划管理-临时主键
|
* @return 气体管路计划管理-临时
|
*/
|
public ApsGasPipingPlanTemp selectApsGasPipingPlanTempById(String id);
|
|
/**
|
* 查询气体管路计划管理-临时列表
|
*
|
* @param apsGasPipingPlanTemp 气体管路计划管理-临时
|
* @return 气体管路计划管理-临时集合
|
*/
|
public List<ApsGasPipingPlanTemp> selectApsGasPipingPlanTempList(ApsGasPipingPlanTemp apsGasPipingPlanTemp);
|
|
/**
|
* 新增气体管路计划管理-临时
|
*
|
* @param apsGasPipingPlanTemp 气体管路计划管理-临时
|
* @return 结果
|
*/
|
public int insertApsGasPipingPlanTemp(ApsGasPipingPlanTemp apsGasPipingPlanTemp);
|
|
/**
|
* 修改气体管路计划管理-临时
|
*
|
* @param apsGasPipingPlanTemp 气体管路计划管理-临时
|
* @return 结果
|
*/
|
public int updateApsGasPipingPlanTemp(ApsGasPipingPlanTemp apsGasPipingPlanTemp);
|
|
/**
|
* 批量删除气体管路计划管理-临时
|
*
|
* @param ids 需要删除的气体管路计划管理-临时主键集合
|
* @return 结果
|
*/
|
public int deleteApsGasPipingPlanTempByIds(String[] ids);
|
|
/**
|
* 删除气体管路计划管理-临时信息
|
*
|
* @param id 气体管路计划管理-临时主键
|
* @return 结果
|
*/
|
public int deleteApsGasPipingPlanTempById(String id);
|
}
|