office_service.php 281 B

1234567891011121314151617
  1. <?php
  2. class office_service {
  3. private $category;
  4. function __construct() {
  5. Doo::loadModel ( 'cld/category_cld' );
  6. $this->category = new category_cld ();
  7. }
  8. // 获得所有办事处
  9. public function GetAll() {
  10. $list = $this->category->GetAll ();
  11. return $list;
  12. }
  13. }
  14. ?>