huangjiayang
2025-05-10 14f982bf34e45b0ad5218212346cf2b33f0a6915
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
64
65
66
67
68
69
70
71
72
73
74
75
76
package com.aps.core.mapper;
 
import com.aps.core.domain.ApsGasPipingPlan;
import org.apache.ibatis.annotations.Mapper;
 
import java.util.List;
 
/**
 * 气体管路计划管理Mapper接口
 * 
 * @author wwj
 * @date 2025-04-09
 */
@Mapper
public interface ApsGasPipingPlanMapper 
{
    /**
     * 查询气体管路计划管理
     * 
     * @param id 气体管路计划管理主键
     * @return 气体管路计划管理
     */
    public ApsGasPipingPlan selectApsGasPipingPlanById(String id);
 
    /**
     * 查询气体管路计划管理列表
     * 
     * @param apsGasPipingPlan 气体管路计划管理
     * @return 气体管路计划管理集合
     */
    public List<ApsGasPipingPlan> selectApsGasPipingPlanList(ApsGasPipingPlan apsGasPipingPlan);
 
    /**
     * 新增气体管路计划管理
     * 
     * @param apsGasPipingPlan 气体管路计划管理
     * @return 结果
     */
    public int insertApsGasPipingPlan(ApsGasPipingPlan apsGasPipingPlan);
 
    /**
     * 修改气体管路计划管理
     * 
     * @param apsGasPipingPlan 气体管路计划管理
     * @return 结果
     */
    public int updateApsGasPipingPlan(ApsGasPipingPlan apsGasPipingPlan);
 
    /**
     * 删除气体管路计划管理
     * 
     * @param id 气体管路计划管理主键
     * @return 结果
     */
    public int deleteApsGasPipingPlanById(String id);
 
    /**
     * 批量删除气体管路计划管理
     * 
     * @param ids 需要删除的数据主键集合
     * @return 结果
     */
    public int deleteApsGasPipingPlanByIds(String[] ids);
    /**
     * 批量删除气体管路计划管理
     * @return 结果
     */
    int removeAllPlans();
 
    /**
     * 获取气体管路工单关联工序数据
     * @param apsGasPipingPlan
     * @return
     */
    public List<ApsGasPipingPlan> selectApsGasPipingPlanWithProcess(ApsGasPipingPlan apsGasPipingPlan);
}