sfd
2025-05-21 7c266bff815ebed897e51f401ef5987629d77c44
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
package com.aps.core.service.impl;
 
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.aps.core.mapper.ApsWeldSeamStandardMapper;
import com.aps.core.domain.ApsWeldSeamStandard;
import com.aps.core.service.IApsWeldSeamStandardService;
 
/**
 * 焊缝标准Service业务层处理
 * 
 * @author user
 * @date 2023-11-05
 */
@Service
public class ApsWeldSeamStandardServiceImpl implements IApsWeldSeamStandardService 
{
    @Autowired
    private ApsWeldSeamStandardMapper apsWeldSeamStandardMapper;
 
    /**
     * 查询焊缝标准列表
     * 
     * @param apsWeldSeamStandard 焊缝标准
     * @return 焊缝标准
     */
    @Override
    public List<ApsWeldSeamStandard> selectApsWeldSeamStandardList(ApsWeldSeamStandard apsWeldSeamStandard)
    {
        return apsWeldSeamStandardMapper.selectApsWeldSeamStandardList(apsWeldSeamStandard);
    }