class TableA extends Model{
.....
/**
* Get model attributes
*
* @return array
*/
public function getAttributes()
{
$metaData = $this->getModelsMetaData();
return $metaData->getAttributes($this);
}
}
$model = new TableA();
$attr = $model->getAttributes();