zhanghl
2025-05-21 bb3a0be871454582ac64e4fd2a1d7f06d7ec7d12
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);