package com.dy.pipIrrGlobal.daoBa;
|
|
import com.dy.pipIrrGlobal.pojoBa.BaRole;
|
import org.apache.ibatis.annotations.Mapper;
|
|
import java.util.List;
|
|
@Mapper
|
public interface BaRoleMapper extends com.baomidou.mybatisplus.core.mapper.Mapper<BaRole> {
|
/**
|
* insert record to table
|
* @param record the record
|
* @return insert count
|
*/
|
int insert(BaRole record);
|
|
/**
|
* insert record to table selective
|
* @param record the record
|
* @return insert count
|
*/
|
int insertSelective(BaRole record);
|
|
List<BaRole> select() ;
|
}
|