FreightFee.php 473 B

1234567891011121314151617181920
  1. <?php
  2. namespace App\Model;
  3. class FreightFee extends UseScopeBaseModel
  4. {
  5. protected $table = "freight_fee"; //指定表
  6. const CREATED_AT = 'crt_time';
  7. const UPDATED_AT = 'upd_time';
  8. protected $dateFormat = 'U';
  9. const businessTypeNormal = 65;
  10. const businessTypeReturn = 66;
  11. const deliveryModeNormal = 70519;
  12. const deliveryModeRightNow = 70536;
  13. const employee_column = 'employee_id_1';
  14. public static $field = ['order_time','id'];
  15. }