hongjli
2025-05-21 0f994c67ff258fb93aa85ae90200e3db2b5f97f4
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
package com.aps.job.mapper;
 
import com.aps.job.domain.ApsWeldSeamStandardJob;
import org.apache.ibatis.annotations.Mapper;
 
import java.util.List;
 
/**
 * 焊缝标准业务表 Mapper接口
 * 
 * @author user
 * @date 2023-11-05
 */
@Mapper
public interface ApsWeldSeamStandardMapper
{
    /**
     * 删除所有焊缝标准数据
     * 
     * @return 结果
     */
    public int deleteAllApsWeldSeamStandard();
    
    /**
     * 批量新增焊缝标准
     * 
     * @param list 焊缝标准Job列表
     * @return 结果
     */
    public int batchInsertApsWeldSeamStandard(List<ApsWeldSeamStandardJob> list);