package com.aps.core.mapper;
|
|
import com.aps.core.domain.ApsGasPipelineMo;
|
import com.aps.core.domain.ApsPlanCycle;
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import org.apache.ibatis.annotations.Mapper;
|
|
import java.util.List;
|
|
/**
|
* 管路手工气体工单数据Mapper接口
|
*
|
* @author ruoyi
|
* @date 2025-05-19
|
*/
|
@Mapper
|
public interface ApsGasPipelineMoMapper extends BaseMapper<ApsGasPipelineMo>
|
{
|
/**
|
* 查询管路手工气体工单数据
|
*
|
* @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 id 管路手工气体工单数据主键
|
* @return 结果
|
*/
|
public int deleteApsGasPipelineMoById(Long id);
|
|
/**
|
* 批量删除管路手工气体工单数据
|
*
|
* @param ids 需要删除的数据主键集合
|
* @return 结果
|
*/
|
public int deleteApsGasPipelineMoByIds(Long[] ids);
|
|
void deleteAll();
|
}
|