I usually just extend Zend_Db_Table_Abstract. Like this:
class SomeTable extends Zend_Db_Table_Abstract
{
protected $_name = 'table_in_your_db';
protected $_primary = 'column_name_of_your_primary_key';
}
Its very simple. This allows me to use Zend_Db_Select very easily along with updates, inserts, and deletes.
$tableObj = new SomeTable();
$select = $tableObj->select();
$select->where(array("$id = $someId", "time" => "UNIX_TIMESTAMP(time)"));
$row = $tableObj->fetchRow($select);
Sure, I could make an actual function on the table to do the above seamlessly, but I haven't yet. It works, and it works well. It really is up to you and what you're comfortable with. So, yes, I do make separate classes for each of my tables. It allows me to do the above and get fancy if I so choose.