package com.aps.core.service;
|
|
import java.util.List;
|
import com.aps.core.domain.ApsGasPipelinePrediction;
|
import org.springframework.web.multipart.MultipartFile;
|
|
/**
|
* 管路手工气体预测数据Service接口
|
*
|
* @author ruoyi
|
* @date 2025-05-19
|
*/
|
public interface IApsGasPipelinePredictionService
|
{
|
/**
|
* 查询管路手工气体预测数据
|
*
|
* @param id 管路手工气体预测数据主键
|
* @return 管路手工气体预测数据
|
*/
|
public ApsGasPipelinePrediction selectApsGasPipelinePredictionById(Long id);
|
|
/**
|
* 查询管路手工气体预测数据列表
|
*
|
* @param apsGasPipelinePrediction 管路手工气体预测数据
|
* @return 管路手工气体预测数据集合
|
*/
|
public List<ApsGasPipelinePrediction> selectApsGasPipelinePredictionList(ApsGasPipelinePrediction apsGasPipelinePrediction);
|
|
/**
|
* 新增管路手工气体预测数据
|
*
|
* @param apsGasPipelinePrediction 管路手工气体预测数据
|
* @return 结果
|
*/
|
public int insertApsGasPipelinePrediction(ApsGasPipelinePrediction apsGasPipelinePrediction);
|
|
/**
|
* 修改管路手工气体预测数据
|
*
|
* @param apsGasPipelinePrediction 管路手工气体预测数据
|
* @return 结果
|
*/
|
public int updateApsGasPipelinePrediction(ApsGasPipelinePrediction apsGasPipelinePrediction);
|
|
/**
|
* 批量删除管路手工气体预测数据
|
*
|
* @param ids 需要删除的管路手工气体预测数据主键集合
|
* @return 结果
|
*/
|
public int deleteApsGasPipelinePredictionByIds(Long[] ids);
|
|
/**
|
* 删除管路手工气体预测数据信息
|
*
|
* @param id 管路手工气体预测数据主键
|
* @return 结果
|
*/
|
public int deleteApsGasPipelinePredictionById(Long id);
|
|
int batchInsertApsGasPipelinePrediction(MultipartFile file);
|
}
|