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