zhanghl
2025-05-22 dae4a24949c0c8cfad87aff850b667d3cad399c1
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
package com.aps.core.service;
 
import java.util.List;
import com.aps.core.domain.ApsPartPlanTemp;
 
/**
 * 零件计划管理临时Service接口
 * 
 * @author wwj
 * @date 2025-04-08
 */
public interface IApsPartPlanTempService 
{
    /**
     * 查询零件计划管理临时
     * 
     * @param id 零件计划管理临时主键
     * @return 零件计划管理临时
     */
    public ApsPartPlanTemp selectApsPartPlanTempById(String id);
 
    /**
     * 查询零件计划管理临时列表
     * 
     * @param apsPartPlanTemp 零件计划管理临时
     * @return 零件计划管理临时集合
     */
    public List<ApsPartPlanTemp> selectApsPartPlanTempList(ApsPartPlanTemp apsPartPlanTemp);
 
    /**
     * 新增零件计划管理临时
     * 
     * @param apsPartPlanTemp 零件计划管理临时
     * @return 结果
     */
    public int insertApsPartPlanTemp(ApsPartPlanTemp apsPartPlanTemp);
 
    /**
     * 修改零件计划管理临时
     * 
     * @param apsPartPlanTemp 零件计划管理临时
     * @return 结果
     */
    public int updateApsPartPlanTemp(ApsPartPlanTemp apsPartPlanTemp);
 
    /**
     * 批量删除零件计划管理临时
     * 
     * @param ids 需要删除的零件计划管理临时主键集合
     * @return 结果
     */
    public int deleteApsPartPlanTempByIds(String[] ids);
 
    /**
     * 删除零件计划管理临时信息
     * 
     * @param id 零件计划管理临时主键
     * @return 结果
     */
    public int deleteApsPartPlanTempById(String id);
}