-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
33 changed files
with
2,622 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,172 @@ | ||
<?php | ||
/** | ||
* System generated by SysGen (System Generator with Formdin Framework) | ||
* Download SysGen: https://github.com/bjverde/sysgen | ||
* Download Formdin Framework: https://github.com/bjverde/formDin | ||
* | ||
* SysGen Version: 1.10.1-alpha | ||
* FormDin Version: 4.7.9-alpha | ||
* | ||
* System appev2 created in: 2019-11-01 22:23:14 | ||
*/ | ||
class Acesso_menuVO | ||
{ | ||
private $idmenu = null; | ||
private $nom_menu = null; | ||
private $idmenu_pai = null; | ||
private $url = null; | ||
private $tooltip = null; | ||
private $img_menu = null; | ||
private $imgdisabled = null; | ||
private $disabled = null; | ||
private $hotkey = null; | ||
private $boolseparator = null; | ||
private $jsonparams = null; | ||
private $sit_ativo = null; | ||
private $dat_inclusao = null; | ||
private $dat_update = null; | ||
public function __construct( $idmenu=null, $nom_menu=null, $idmenu_pai=null, $url=null, $tooltip=null, $img_menu=null, $imgdisabled=null, $disabled=null, $hotkey=null, $boolseparator=null, $jsonparams=null, $sit_ativo=null, $dat_inclusao=null, $dat_update=null ) { | ||
$this->setIdmenu( $idmenu ); | ||
$this->setNom_menu( $nom_menu ); | ||
$this->setIdmenu_pai( $idmenu_pai ); | ||
$this->setUrl( $url ); | ||
$this->setTooltip( $tooltip ); | ||
$this->setImg_menu( $img_menu ); | ||
$this->setImgdisabled( $imgdisabled ); | ||
$this->setDisabled( $disabled ); | ||
$this->setHotkey( $hotkey ); | ||
$this->setBoolseparator( $boolseparator ); | ||
$this->setJsonparams( $jsonparams ); | ||
$this->setSit_ativo( $sit_ativo ); | ||
$this->setDat_inclusao( $dat_inclusao ); | ||
$this->setDat_update( $dat_update ); | ||
} | ||
//-------------------------------------------------------------------------------- | ||
public function setIdmenu( $strNewValue = null ) | ||
{ | ||
$this->idmenu = $strNewValue; | ||
} | ||
public function getIdmenu() | ||
{ | ||
return $this->idmenu; | ||
} | ||
//-------------------------------------------------------------------------------- | ||
public function setNom_menu( $strNewValue = null ) | ||
{ | ||
$this->nom_menu = $strNewValue; | ||
} | ||
public function getNom_menu() | ||
{ | ||
return $this->nom_menu; | ||
} | ||
//-------------------------------------------------------------------------------- | ||
public function setIdmenu_pai( $strNewValue = null ) | ||
{ | ||
$this->idmenu_pai = $strNewValue; | ||
} | ||
public function getIdmenu_pai() | ||
{ | ||
return $this->idmenu_pai; | ||
} | ||
//-------------------------------------------------------------------------------- | ||
public function setUrl( $strNewValue = null ) | ||
{ | ||
$this->url = $strNewValue; | ||
} | ||
public function getUrl() | ||
{ | ||
return $this->url; | ||
} | ||
//-------------------------------------------------------------------------------- | ||
public function setTooltip( $strNewValue = null ) | ||
{ | ||
$this->tooltip = $strNewValue; | ||
} | ||
public function getTooltip() | ||
{ | ||
return $this->tooltip; | ||
} | ||
//-------------------------------------------------------------------------------- | ||
public function setImg_menu( $strNewValue = null ) | ||
{ | ||
$this->img_menu = $strNewValue; | ||
} | ||
public function getImg_menu() | ||
{ | ||
return $this->img_menu; | ||
} | ||
//-------------------------------------------------------------------------------- | ||
public function setImgdisabled( $strNewValue = null ) | ||
{ | ||
$this->imgdisabled = $strNewValue; | ||
} | ||
public function getImgdisabled() | ||
{ | ||
return $this->imgdisabled; | ||
} | ||
//-------------------------------------------------------------------------------- | ||
public function setDisabled( $strNewValue = null ) | ||
{ | ||
$this->disabled = $strNewValue; | ||
} | ||
public function getDisabled() | ||
{ | ||
return $this->disabled; | ||
} | ||
//-------------------------------------------------------------------------------- | ||
public function setHotkey( $strNewValue = null ) | ||
{ | ||
$this->hotkey = $strNewValue; | ||
} | ||
public function getHotkey() | ||
{ | ||
return $this->hotkey; | ||
} | ||
//-------------------------------------------------------------------------------- | ||
public function setBoolseparator( $strNewValue = null ) | ||
{ | ||
$this->boolseparator = $strNewValue; | ||
} | ||
public function getBoolseparator() | ||
{ | ||
return $this->boolseparator; | ||
} | ||
//-------------------------------------------------------------------------------- | ||
public function setJsonparams( $strNewValue = null ) | ||
{ | ||
$this->jsonparams = $strNewValue; | ||
} | ||
public function getJsonparams() | ||
{ | ||
return $this->jsonparams; | ||
} | ||
//-------------------------------------------------------------------------------- | ||
public function setSit_ativo( $strNewValue = null ) | ||
{ | ||
$this->sit_ativo = $strNewValue; | ||
} | ||
public function getSit_ativo() | ||
{ | ||
return $this->sit_ativo; | ||
} | ||
//-------------------------------------------------------------------------------- | ||
public function setDat_inclusao( $strNewValue = null ) | ||
{ | ||
$this->dat_inclusao = $strNewValue; | ||
} | ||
public function getDat_inclusao() | ||
{ | ||
return is_null( $this->dat_inclusao ) ? date( 'Y-m-d h:i:s' ) : $this->dat_inclusao; | ||
} | ||
//-------------------------------------------------------------------------------- | ||
public function setDat_update( $strNewValue = null ) | ||
{ | ||
$this->dat_update = $strNewValue; | ||
} | ||
public function getDat_update() | ||
{ | ||
return is_null( $this->dat_update ) ? date( 'Y-m-d h:i:s' ) : $this->dat_update; | ||
} | ||
//-------------------------------------------------------------------------------- | ||
} | ||
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
<?php | ||
/** | ||
* System generated by SysGen (System Generator with Formdin Framework) | ||
* Download SysGen: https://github.com/bjverde/sysgen | ||
* Download Formdin Framework: https://github.com/bjverde/formDin | ||
* | ||
* SysGen Version: 1.10.1-alpha | ||
* FormDin Version: 4.7.9-alpha | ||
* | ||
* System appev2 created in: 2019-11-01 22:23:14 | ||
*/ | ||
class Acesso_perfilVO | ||
{ | ||
private $idperfil = null; | ||
private $nom_perfil = null; | ||
private $sit_ativo = null; | ||
private $dat_inclusao = null; | ||
private $dat_update = null; | ||
public function __construct( $idperfil=null, $nom_perfil=null, $sit_ativo=null, $dat_inclusao=null, $dat_update=null ) { | ||
$this->setIdperfil( $idperfil ); | ||
$this->setNom_perfil( $nom_perfil ); | ||
$this->setSit_ativo( $sit_ativo ); | ||
$this->setDat_inclusao( $dat_inclusao ); | ||
$this->setDat_update( $dat_update ); | ||
} | ||
//-------------------------------------------------------------------------------- | ||
public function setIdperfil( $strNewValue = null ) | ||
{ | ||
$this->idperfil = $strNewValue; | ||
} | ||
public function getIdperfil() | ||
{ | ||
return $this->idperfil; | ||
} | ||
//-------------------------------------------------------------------------------- | ||
public function setNom_perfil( $strNewValue = null ) | ||
{ | ||
$this->nom_perfil = $strNewValue; | ||
} | ||
public function getNom_perfil() | ||
{ | ||
return $this->nom_perfil; | ||
} | ||
//-------------------------------------------------------------------------------- | ||
public function setSit_ativo( $strNewValue = null ) | ||
{ | ||
$this->sit_ativo = $strNewValue; | ||
} | ||
public function getSit_ativo() | ||
{ | ||
return $this->sit_ativo; | ||
} | ||
//-------------------------------------------------------------------------------- | ||
public function setDat_inclusao( $strNewValue = null ) | ||
{ | ||
$this->dat_inclusao = $strNewValue; | ||
} | ||
public function getDat_inclusao() | ||
{ | ||
return is_null( $this->dat_inclusao ) ? date( 'Y-m-d h:i:s' ) : $this->dat_inclusao; | ||
} | ||
//-------------------------------------------------------------------------------- | ||
public function setDat_update( $strNewValue = null ) | ||
{ | ||
$this->dat_update = $strNewValue; | ||
} | ||
public function getDat_update() | ||
{ | ||
return is_null( $this->dat_update ) ? date( 'Y-m-d h:i:s' ) : $this->dat_update; | ||
} | ||
//-------------------------------------------------------------------------------- | ||
} | ||
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
<?php | ||
/** | ||
* System generated by SysGen (System Generator with Formdin Framework) | ||
* Download SysGen: https://github.com/bjverde/sysgen | ||
* Download Formdin Framework: https://github.com/bjverde/formDin | ||
* | ||
* SysGen Version: 1.10.1-alpha | ||
* FormDin Version: 4.7.9-alpha | ||
* | ||
* System appev2 created in: 2019-11-01 22:23:14 | ||
*/ | ||
class Acesso_perfil_menuVO | ||
{ | ||
private $idperfilmenu = null; | ||
private $idperfil = null; | ||
private $idmenu = null; | ||
private $sit_ativo = null; | ||
private $dat_inclusao = null; | ||
private $dat_update = null; | ||
public function __construct( $idperfilmenu=null, $idperfil=null, $idmenu=null, $sit_ativo=null, $dat_inclusao=null, $dat_update=null ) { | ||
$this->setIdperfilmenu( $idperfilmenu ); | ||
$this->setIdperfil( $idperfil ); | ||
$this->setIdmenu( $idmenu ); | ||
$this->setSit_ativo( $sit_ativo ); | ||
$this->setDat_inclusao( $dat_inclusao ); | ||
$this->setDat_update( $dat_update ); | ||
} | ||
//-------------------------------------------------------------------------------- | ||
public function setIdperfilmenu( $strNewValue = null ) | ||
{ | ||
$this->idperfilmenu = $strNewValue; | ||
} | ||
public function getIdperfilmenu() | ||
{ | ||
return $this->idperfilmenu; | ||
} | ||
//-------------------------------------------------------------------------------- | ||
public function setIdperfil( $strNewValue = null ) | ||
{ | ||
$this->idperfil = $strNewValue; | ||
} | ||
public function getIdperfil() | ||
{ | ||
return $this->idperfil; | ||
} | ||
//-------------------------------------------------------------------------------- | ||
public function setIdmenu( $strNewValue = null ) | ||
{ | ||
$this->idmenu = $strNewValue; | ||
} | ||
public function getIdmenu() | ||
{ | ||
return $this->idmenu; | ||
} | ||
//-------------------------------------------------------------------------------- | ||
public function setSit_ativo( $strNewValue = null ) | ||
{ | ||
$this->sit_ativo = $strNewValue; | ||
} | ||
public function getSit_ativo() | ||
{ | ||
return $this->sit_ativo; | ||
} | ||
//-------------------------------------------------------------------------------- | ||
public function setDat_inclusao( $strNewValue = null ) | ||
{ | ||
$this->dat_inclusao = $strNewValue; | ||
} | ||
public function getDat_inclusao() | ||
{ | ||
return is_null( $this->dat_inclusao ) ? date( 'Y-m-d h:i:s' ) : $this->dat_inclusao; | ||
} | ||
//-------------------------------------------------------------------------------- | ||
public function setDat_update( $strNewValue = null ) | ||
{ | ||
$this->dat_update = $strNewValue; | ||
} | ||
public function getDat_update() | ||
{ | ||
return is_null( $this->dat_update ) ? date( 'Y-m-d h:i:s' ) : $this->dat_update; | ||
} | ||
//-------------------------------------------------------------------------------- | ||
} | ||
?> |
Oops, something went wrong.