| 12345678910111213141516171819202122232425 |
- <?php
- namespace App\Model;
- class ItemReportRoad extends UseScopeBaseModel
- {
- protected $guarded = [];
- protected $table = "item_report_road"; //指定表
- const CREATED_AT = null;
- const UPDATED_AT = null;
- protected $dateFormat = 'U';
- const ORDER_ONE = 1;
- const ORDER_TWO = 2;
- const ORDER_THREE = 3;
- const ORDER_FOUR = 4;
- public static $order_type = [
- self::ORDER_ONE => '张春勇',
- self::ORDER_TWO => '金小勇',
- self::ORDER_THREE => '沈强',
- self::ORDER_FOUR => '王利英、翁春燕、叶南汝'
- ];
- }
|