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 selectApsWeldSeamStandardList(ApsWeldSeamStandard apsWeldSeamStandard); }