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