清除ID数据缓存
$this Module_OOP_ORM_Data::_remove_id_cache_data( )
$this protected function _remove_id_cache_data()
{
    if (IS_CLI)return $this;
    $id_field_name = $this->id_field_name();
    $id = $this->$id_field_name;
    if ( $id && isset(OOP_ORM_Data::$_id_field_cache_data[$this->_class_name][$id]) )
    {
        unset(OOP_ORM_Data::$_id_field_cache_data[$this->_class_name][$id]);
        OOP_ORM_Data::$_id_field_cache_data_num -= 1;
    }
    return $this;
}