1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.dy.pipIrrGlobal.daoBa;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.dy.pipIrrGlobal.pojoBa.BaClient;
import org.apache.ibatis.annotations.Mapper;
 
@Mapper
public interface BaClientMapper extends BaseMapper<BaClient> {
    /**
     * insert record to table
     * @param record the record
     * @return insert count
     */
    int insert(BaClient record);
 
    /**
     * insert record to table selective
     * @param record the record
     * @return insert count
     */
    int insertSelective(BaClient record);
}