海南旅游SAAS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
196 B

4 years ago
  1. <?php
  2. namespace App\Traits;
  3. trait WorkorderTraits
  4. {
  5. public static $state = [
  6. 1,
  7. 2,
  8. 3,
  9. ];
  10. public static $stateText = [
  11. 1 => '待回复',
  12. 2 => '处理中',
  13. 3 => '已关闭',
  14. ];
  15. }