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);
| }
|
|