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