wenwj
2025-04-11 0edc9cd23d8787f93fe52afac0577e327f67cbbe
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
package com.aps.core.mapper;
 
import java.util.List;
import com.aps.core.domain.ApsGasPipingPlanTemp;
import org.apache.ibatis.annotations.Mapper;
 
/**
 * 气体管路计划管理-临时Mapper接口
 * 
 * @author wwj
 * @date 2025-04-09
 */
@Mapper
public interface ApsGasPipingPlanTempMapper 
{
    /**
     * 查询气体管路计划管理-临时
     * 
     * @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 id 气体管路计划管理-临时主键
     * @return 结果
     */
    public int deleteApsGasPipingPlanTempById(String id);
 
    /**
     * 批量删除气体管路计划管理-临时
     * 
     * @param ids 需要删除的数据主键集合
     * @return 结果
     */
    public int deleteApsGasPipingPlanTempByIds(String[] ids);
}