CenterRoleMapper.java
905 Bytes
package org.nafmii.nafmiimbg.mapper;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.nafmii.nafmiimbg.model.CenterRole;
import org.nafmii.nafmiimbg.model.CenterRoleExample;
public interface CenterRoleMapper {
long countByExample(CenterRoleExample example);
int deleteByExample(CenterRoleExample example);
int deleteByPrimaryKey(Long id);
int insert(CenterRole record);
int insertSelective(CenterRole record);
List<CenterRole> selectByExample(CenterRoleExample example);
CenterRole selectByPrimaryKey(Long id);
int updateByExampleSelective(@Param("record") CenterRole record, @Param("example") CenterRoleExample example);
int updateByExample(@Param("record") CenterRole record, @Param("example") CenterRoleExample example);
int updateByPrimaryKeySelective(CenterRole record);
int updateByPrimaryKey(CenterRole record);
}