sfd
2025-05-22 e5a96bc789ca0252e31fd2e01bec5e471a02c0d6
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
package com.aps.job.service;
 
import com.aps.job.domain.ApsWeldSeamStandardJob;
 
import java.util.List;
 
/**
 * 焊缝标准Job Service接口
 * 
 * @author user
 * @date 2023-11-05
 */
public interface IApsWeldSeamStandardJobService 
{
    /**
     * 查询焊缝标准列表
     * 
     * @param apsWeldSeamStandardJob 焊缝标准
     * @return 焊缝标准集合
     */
    public List<ApsWeldSeamStandardJob> selectApsWeldSeamStandardJobList(ApsWeldSeamStandardJob apsWeldSeamStandardJob);
 
    /**
     * 删除所有焊缝标准Job数据
     * 
     * @return 结果
     */
    public int deleteAllApsWeldSeamStandardJob();
    
    /**
     * 批量新增焊缝标准Job
     * 
     * @param list 焊缝标准Job列表
     * @return 结果
     */
    public int batchInsertApsWeldSeamStandardJob(List<ApsWeldSeamStandardJob> list);
    
    /**
     * 同步物料标准焊缝数据
     * 
     * @return 结果
     */
    public boolean syncWeldSeamStandardData();