| 1234567891011121314151617 | 
							- <?php
 
- namespace App\Model;
 
- class Customer extends UseScopeBaseModel
 
- {
 
-     protected $table = "customer"; //指定表
 
-     const CREATED_AT = 'crt_time';
 
-     const UPDATED_AT = 'upd_time';
 
-     protected $dateFormat = 'U';
 
-     public static $prefix = "kh";
 
-     public static $user = [];
 
-     public static $search = [];
 
-     public static $limitKey = "";
 
-     const range_function = '';
 
- }
 
 
  |