| 12345678910111213141516 |
- <?php
- namespace App\Model;
- class Order extends UseScopeBaseModel
- {
- protected $guarded = [];
- protected $table = "order"; //指定表
- const CREATED_AT = 'crt_time';
- const UPDATED_AT = 'upd_time';
- const employee_column = "crt_id";
- public static $field = ['order_number','id','customer_id','supply_id','crt_time','order_time','crt_id','quantity','lt_arrived_time'];
- protected $dateFormat = 'U';
- }
|