霍林河露天煤矿生产一体化平台
1
13693261870
2023-04-10 e49292cc68c85f839524e3521d912e24cf15eccc
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);
}