FreightFee.php 612 B

123456789101112131415161718192021222324
  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. public static $delivery = [
  14. self::deliveryModeNormal => '纯自提',
  15. self::deliveryModeRightNow => '当日达',
  16. ];
  17. const employee_column = 'employee_id_1';
  18. public static $field = ['order_time','id'];
  19. }