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