EvectionConstant.php 388 B

12345678910111213141516171819202122
  1. <?php
  2. namespace app\common\constant;
  3. /**
  4. * 出差常量类
  5. */
  6. class EvectionConstant
  7. {
  8. // 出差类型:1=市内,2=市外
  9. const EVECTION_TYPE_1 = '1';
  10. const EVECTION_TYPE_2 = '2';
  11. public static function get_type_list()
  12. {
  13. return [
  14. self::EVECTION_TYPE_1 => '市内出差',
  15. self::EVECTION_TYPE_2 => '市外出差',
  16. ];
  17. }
  18. }