sfd
2025-05-23 010366d0f907365ce43321ef1501192e480bd762
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
package com.aps.core.service;
 
import com.aps.core.domain.ApsGasPipelineCapacityPlan;
 
import java.util.List;
 
/**
 * 气体管路产能规划Service接口
 * 
 * @author hjy
 * @date 2025-04-24
 */
public interface IApsGasPipelineCapacityPlanService 
{
    /**
     * 查询气体管路产能规划
     * 
     * @param id 气体管路产能规划主键
     * @return 气体管路产能规划
     */
    public ApsGasPipelineCapacityPlan selectApsGasPipelineCapacityPlanById(Long id);
 
    /**
     * 查询气体管路产能规划列表
     * 
     * @param apsGasPipelineCapacityPlan 气体管路产能规划
     * @return 气体管路产能规划集合
     */
    public List<ApsGasPipelineCapacityPlan> selectApsGasPipelineCapacityPlanList(ApsGasPipelineCapacityPlan apsGasPipelineCapacityPlan);
 
    /**
     * 新增气体管路产能规划
     * 
     * @param apsGasPipelineCapacityPlan 气体管路产能规划
     * @return 结果
     */
    public int insertApsGasPipelineCapacityPlan(ApsGasPipelineCapacityPlan apsGasPipelineCapacityPlan);
 
    /**
     * 修改气体管路产能规划
     * 
     * @param apsGasPipelineCapacityPlan 气体管路产能规划
     * @return 结果
     */
    public int updateApsGasPipelineCapacityPlan(ApsGasPipelineCapacityPlan apsGasPipelineCapacityPlan);
 
    /**
     * 批量删除气体管路产能规划
     * 
     * @param ids 需要删除的气体管路产能规划主键集合
     * @return 结果
     */
    public int deleteApsGasPipelineCapacityPlanByIds(Long[] ids);
 
    /**
     * 删除气体管路产能规划信息
     * 
     * @param id 气体管路产能规划主键
     * @return 结果
     */
    public int deleteApsGasPipelineCapacityPlanById(Long id);
 
    void copyPlan(String date, String factory, String major, String toStart, String toEnd);
}