霍林河露天煤矿生产一体化平台
1
13693261870
2023-04-07 a51147871c8e862d4882f4087171b8d25e743ebd
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
package com.terra.coal.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
/**
 * BasicMapper
 * @author WWW
 */
public interface BasicMapper<T> extends BaseMapper<T> {
    /**
     * insertBatch
     *
     * @param list
     * @return
     */
    public int insertBatch(@Param("list") List<T> list);
 
    /**
     * updateBatch
     *
     * @param list
     * @return
     */
    public int updateBatch(@Param("list") List<T> list);
}