hongjli
2025-05-23 26c8536e1a95b91b7763afccd3c4a7dec9e5f5dc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.aps.core.service;
 
import java.util.List;
import com.aps.core.domain.ApsWeldSeamStandard;
 
/**
 * 焊缝标准Service接口
 * 
 * @author user
 * @date 2023-11-05
 */
public interface IApsWeldSeamStandardService 
{
    /**
     * 查询焊缝标准列表
     * 
     * @param apsWeldSeamStandard 焊缝标准
     * @return 焊缝标准集合
     */
    public List<ApsWeldSeamStandard> selectApsWeldSeamStandardList(ApsWeldSeamStandard apsWeldSeamStandard);