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
18 lines
196 B
<?php
|
|
|
|
namespace App\Traits;
|
|
|
|
trait WorkorderTraits
|
|
{
|
|
public static $state = [
|
|
1,
|
|
2,
|
|
3,
|
|
];
|
|
|
|
public static $stateText = [
|
|
1 => '待回复',
|
|
2 => '处理中',
|
|
3 => '已关闭',
|
|
];
|
|
}
|