| 123456789101112131415161718192021 |
- <?php
- Doo::loadCore ( 'db/DooModel' );
- class department extends DooModel {
- public $did;
- public $cid;
- public $departmentName;
- public $_table = 'CLD_department';
- public $_primarykey = 'did';
- public $_fields = array (
- 'cid',
- 'departmentName',
- 'did'
- );
- public function getDepartmentBycid($cid = 0) {
- return $this->find ( array (
- 'where' => "cid= '" . $cid . "' ",
- 'asArray' => TRUE
- ) );
- }
- }
- ?>
|