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);
|
}
|
}
|