BaseService.php 239 B

1234567891011121314151617
  1. <?php
  2. namespace app;
  3. class BaseService
  4. {
  5. protected function ok($data = null) {
  6. return new \SResult(true,null, $data);
  7. }
  8. protected function fail($message) {
  9. return new \SResult(false,$message,null);
  10. }
  11. }