1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| package com.aps.core.mapper;
|
| import java.util.List;
| import com.aps.core.domain.ApsWeldSeamStandard;
| import org.apache.ibatis.annotations.Mapper;
|
| /**
| * 焊缝标准Mapper接口
| *
| * @author user
| * @date 2023-11-05
| */
| @Mapper
| public interface ApsWeldSeamStandardMapper
| {
| /**
| * 查询焊缝标准列表
| *
| * @param apsWeldSeamStandard 焊缝标准
| * @return 焊缝标准集合
| */
| public List<ApsWeldSeamStandard> selectApsWeldSeamStandardList(ApsWeldSeamStandard apsWeldSeamStandard);
| }
|
|