Salary.php 266 B

123456789101112131415161718
  1. <?php
  2. namespace app\facade;
  3. use think\Facade;
  4. /**
  5. * 表达式操作类
  6. * @method evaluate(string $expression) static
  7. */
  8. class Salary extends Facade
  9. {
  10. protected static function getFacadeClass(): string
  11. {
  12. return 'app\common\util\Salary';
  13. }
  14. }