package pwc.taxtech.atms.dao; import java.util.List; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import org.apache.ibatis.session.RowBounds; import pwc.taxtech.atms.MyMapper; import pwc.taxtech.atms.entitiy.UserDimensionValueOrg; import pwc.taxtech.atms.entitiy.UserDimensionValueOrgExample; @Mapper public interface UserDimensionValueOrgMapper extends MyMapper { /** * This method was generated by MyBatis Generator. * This method corresponds to the database table UserDimensionValueOrg * * @mbg.generated */ long countByExample(UserDimensionValueOrgExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table UserDimensionValueOrg * * @mbg.generated */ int deleteByExample(UserDimensionValueOrgExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table UserDimensionValueOrg * * @mbg.generated */ int deleteByPrimaryKey(String ID); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table UserDimensionValueOrg * * @mbg.generated */ int insert(UserDimensionValueOrg record); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table UserDimensionValueOrg * * @mbg.generated */ int insertSelective(UserDimensionValueOrg record); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table UserDimensionValueOrg * * @mbg.generated */ List<UserDimensionValueOrg> selectByExampleWithRowbounds(UserDimensionValueOrgExample example, RowBounds rowBounds); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table UserDimensionValueOrg * * @mbg.generated */ List<UserDimensionValueOrg> selectByExample(UserDimensionValueOrgExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table UserDimensionValueOrg * * @mbg.generated */ UserDimensionValueOrg selectByPrimaryKey(String ID); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table UserDimensionValueOrg * * @mbg.generated */ int updateByExampleSelective(@Param("record") UserDimensionValueOrg record, @Param("example") UserDimensionValueOrgExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table UserDimensionValueOrg * * @mbg.generated */ int updateByExample(@Param("record") UserDimensionValueOrg record, @Param("example") UserDimensionValueOrgExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table UserDimensionValueOrg * * @mbg.generated */ int updateByPrimaryKeySelective(UserDimensionValueOrg record); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table UserDimensionValueOrg * * @mbg.generated */ int updateByPrimaryKey(UserDimensionValueOrg record); }