package com.aps.core.service;
|
|
import java.util.List;
|
|
import com.aps.core.domain.ApsGasPipelineMo;
|
import org.springframework.web.multipart.MultipartFile;
|
|
/**
|
* 管路手工气体工单数据Service接口
|
*
|
* @author ruoyi
|
* @date 2025-05-19
|
*/
|
public interface IApsGasPipelineMoService
|
{
|
/**
|
* 查询管路手工气体工单数据
|
*
|
* @param id 管路手工气体工单数据主键
|
* @return 管路手工气体工单数据
|
*/
|
public ApsGasPipelineMo selectApsGasPipelineMoById(Long id);
|
|
/**
|
* 查询管路手工气体工单数据列表
|
*
|
* @param apsGasPipelineMo 管路手工气体工单数据
|
* @return 管路手工气体工单数据集合
|
*/
|
public List<ApsGasPipelineMo> selectApsGasPipelineMoList(ApsGasPipelineMo apsGasPipelineMo);
|
|
/**
|
* 新增管路手工气体工单数据
|
*
|
* @param apsGasPipelineMo 管路手工气体工单数据
|
* @return 结果
|
*/
|
public int insertApsGasPipelineMo(ApsGasPipelineMo apsGasPipelineMo);
|
|
/**
|
* 修改管路手工气体工单数据
|
*
|
* @param apsGasPipelineMo 管路手工气体工单数据
|
* @return 结果
|
*/
|
public int updateApsGasPipelineMo(ApsGasPipelineMo apsGasPipelineMo);
|
|
/**
|
* 批量删除管路手工气体工单数据
|
*
|
* @param ids 需要删除的管路手工气体工单数据主键集合
|
* @return 结果
|
*/
|
public int deleteApsGasPipelineMoByIds(Long[] ids);
|
|
/**
|
* 删除管路手工气体工单数据信息
|
*
|
* @param id 管路手工气体工单数据主键
|
* @return 结果
|
*/
|
public int deleteApsGasPipelineMoById(Long id);
|
|
/**
|
* 插入 管路工单数据
|
* @param file
|
* @return
|
*/
|
int batchInsertGasPipelineMo(MultipartFile file);
|
}
|