Department.php 414 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace app\framework\EasyWechat\Work;
  3. use EasyWeChat\Work\Department\Client as BaseClient;
  4. class Department extends BaseClient
  5. {
  6. public function departmentIds($data = [])
  7. {
  8. return $this->httpPostJson('cgi-bin/department/simplelist', $data);
  9. }
  10. public function departmentDetail($id)
  11. {
  12. return $this->httpPostJson('cgi-bin/department/get', ['id' => $id]);
  13. }
  14. }