123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- <?php
- class reviewModel extends Staple_Model
- {
- private $db;
- private $id;
- private $accountId;
- private $payPeriodMonth;
- private $payPeriodYear;
- private $supervisorId;
- /**
- * @return mixed
- */
- public function getId()
- {
- return $this->id;
- }
- /**
- * @param mixed $id
- */
- public function setId($id)
- {
- $this->id = $id;
- }
- /**
- * @return mixed
- */
- public function getAccountId()
- {
- return $this->accountId;
- }
- /**
- * @param mixed $accountId
- */
- public function setAccountId($accountId)
- {
- $this->accountId = $accountId;
- }
- /**
- * @return mixed
- */
- public function getPayPeriodMonth()
- {
- return $this->payPeriodMonth;
- }
- /**
- * @param mixed $payPeriodMonth
- */
- public function setPayPeriodMonth($payPeriodMonth)
- {
- $this->payPeriodMonth = $payPeriodMonth;
- }
- /**
- * @return mixed
- */
- public function getPayPeriodYear()
- {
- return $this->payPeriodYear;
- }
- /**
- * @param mixed $payPeriodYear
- */
- public function setPayPeriodYear($payPeriodYear)
- {
- $this->payPeriodYear = $payPeriodYear;
- }
- /**
- * @return mixed
- */
- public function getSupervisorId()
- {
- return $this->supervisorId;
- }
- /**
- * @param mixed $supervisorId
- */
- public function setSupervisorId($supervisorId)
- {
- $this->supervisorId = $supervisorId;
- }
- function __construct($year, $month, $uid)
- {
- $this->db = Staple_DB::get();
- echo $uid;
- }
- }
- ?>
|