Skip to content

Commit

Permalink
🔨 APP #266 criando model
Browse files Browse the repository at this point in the history
  • Loading branch information
bjverde committed Jun 11, 2023
1 parent 4cbe622 commit 88df260
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions appexemplo_v1.0/app/model/Tb_arquivo.class.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<?php
/**
* System generated by SysGen (System Generator with Formdin Framework)
* Download SysGenAd: https://github.com/bjverde/sysgenad
* Download Formdin5 Framework: https://github.com/bjverde/formDin5
*
* SysGen Version: 0.1.0
* FormDin Version: 5.0.0
*
* System APPEV1 created in: 2020-08-03 02:23:14
*/
class Tb_arquivo extends TRecord
{
const TABLENAME = 'tb_arquivo';
const PRIMARYKEY= 'id_arquivo';
const IDPOLICY = 'serial'; //{max, serial}

public function __construct($id = NULL, $callObjectLoad = TRUE)
{
parent::__construct($id, $callObjectLoad);
parent::addAttribute('nome_arquivo');
}

}
?>

0 comments on commit 88df260

Please sign in to comment.