Highway to PSR2
[openemr.git] / portal / patient / libs / Model / DAO / OnsiteDocumentDAO.php
blob230c9b39d42f05661302124dbd48bd47993a5ebb
1 <?php
2 /** @package Openemr::Model::DAO */
4 /**
6 * Copyright (C) 2016-2017 Jerry Padgett <sjpadgett@gmail.com>
8 * LICENSE: This program is free software: you can redistribute it and/or modify
9 * it under the terms of the GNU Affero General Public License as
10 * published by the Free Software Foundation, either version 3 of the
11 * License, or (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU Affero General Public License for more details.
18 * You should have received a copy of the GNU Affero General Public License
19 * along with this program. If not, see <http://www.gnu.org/licenses/>.
21 * @package OpenEMR
22 * @author Jerry Padgett <sjpadgett@gmail.com>
23 * @link http://www.open-emr.org
26 /** import supporting libraries */
27 require_once("verysimple/Phreeze/Phreezable.php");
28 require_once("OnsiteDocumentMap.php");
30 /**
31 * OnsiteDocumentDAO provides object-oriented access to the onsite_documents table. This
32 * class is automatically generated by ClassBuilder.
34 * WARNING: THIS IS AN AUTO-GENERATED FILE
36 * This file should generally not be edited by hand except in special circumstances.
37 * Add any custom business logic to the Model class which is extended from this DAO class.
38 * Leaving this file alone will allow easy re-generation of all DAOs in the event of schema changes
40 * @package Openemr::Model::DAO
41 * @author ClassBuilder
42 * @version 1.0
44 class OnsiteDocumentDAO extends Phreezable
46 /** @var int */
47 public $Id;
49 /** @var int */
50 public $Pid;
52 /** @var int */
53 public $Facility;
55 /** @var int */
56 public $Provider;
58 /** @var int */
59 public $Encounter;
61 /** @var timestamp */
62 public $CreateDate;
64 /** @var string */
65 public $DocType;
67 /** @var int */
68 public $PatientSignedStatus;
70 /** @var date */
71 public $PatientSignedTime;
73 /** @var date */
74 public $AuthorizeSignedTime;
76 /** @var int */
77 public $AcceptSignedStatus;
79 /** @var string */
80 public $AuthorizingSignator;
82 /** @var date */
83 public $ReviewDate;
85 /** @var string */
86 public $DenialReason;
88 /** @var string */
89 public $AuthorizedSignature;
91 /** @var string */
92 public $PatientSignature;
94 /** @var blob */
95 public $FullDocument;
97 /** @var string */
98 public $FileName;
100 /** @var string */
101 public $FilePath;