Fixed models

This commit is contained in:
Paolo
2019-04-26 12:43:51 +02:00
parent 3a692f8a5e
commit c84c484a2a
147 changed files with 2132 additions and 46 deletions
@@ -0,0 +1,14 @@
<?php
class Lgartcode_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'bis.tbl_lgartcode';
$this->pk = 'lgartcode';
}
}