AsraRoleMapper.java
875 Bytes
package com.zteits.oa.report.mapper;
import com.zteits.oa.report.domain.AsraRole;
import com.zteits.oa.report.domain.AsraRoleExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
public interface AsraRoleMapper {
long countByExample(AsraRoleExample example);
int deleteByExample(AsraRoleExample example);
int deleteByPrimaryKey(Long id);
int insert(AsraRole record);
int insertSelective(AsraRole record);
List<AsraRole> selectByExample(AsraRoleExample example);
AsraRole selectByPrimaryKey(Long id);
int updateByExampleSelective(@Param("record") AsraRole record, @Param("example") AsraRoleExample example);
int updateByExample(@Param("record") AsraRole record, @Param("example") AsraRoleExample example);
int updateByPrimaryKeySelective(AsraRole record);
int updateByPrimaryKey(AsraRole record);
}