Freight.php 369 B

12345678910111213
  1. <?php
  2. namespace App\Model;
  3. class Freight extends UseScopeBaseModel
  4. {
  5. protected $table = "freight"; //指定表
  6. const CREATED_AT = 'crt_time';
  7. const UPDATED_AT = 'upd_time';
  8. protected $dateFormat = 'U';
  9. public static $field = ['area','id','region','kilometer','min_freight_fee','one_and_five','greater_than_five','crt_id','crt_time','company'];
  10. }