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