1234567891011121314151617181920212223 |
- <?php
- class office_service {
- private $category;
- function __construct() {
- Doo::loadModel ( 'cld/category_cld' );
- $this->category = new category_cld ();
- }
-
- // 获得所有办事处
- public function GetAll() {
- $list = $this->category->GetAll ();
-
- return $list;
- }
-
- public function Get(){
- $list = $this->category->GetAll ();
-
- return $list;
- }
- }
- ?>
|