| 1234567891011121314151617181920 | 
							- <?php
 
- namespace App\Model;
 
- class FreightFee extends UseScopeBaseModel
 
- {
 
-     protected $table = "freight_fee"; //指定表
 
-     const CREATED_AT = 'crt_time';
 
-     const UPDATED_AT = 'upd_time';
 
-     protected $dateFormat = 'U';
 
-     const businessTypeNormal = 65;
 
-     const businessTypeReturn = 66;
 
-     const deliveryModeNormal = 70519;
 
-     const deliveryModeRightNow = 70536;
 
-     const employee_column = 'employee_id_1';
 
-     public static $field = ['order_time','id'];
 
- }
 
 
  |