BasicType.php 975 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. namespace App\Model;
  3. use Illuminate\Database\Eloquent\Model;
  4. class BasicType extends Model
  5. {
  6. protected $table = "basic_type"; //指定表
  7. const CREATED_AT = 'crt_time';
  8. const UPDATED_AT = 'upd_time';
  9. protected $dateFormat = 'U';
  10. public static $type = [
  11. 1 => '客户意向类型',
  12. 2 => '客户来源类型',
  13. 3 => '客户类型',
  14. 4 => '客户电话类型',
  15. 5 => '进展阶段类型',
  16. 6 => '客户状态类型',
  17. 7 => '决策关系类型',
  18. 8 => '客户分级',
  19. 9 => '状态类型',
  20. 10 => '车型',
  21. 11 => '订单类型',
  22. 12 => '成交类型',
  23. 13 => '合同状态',
  24. 14 => '合同类型',
  25. 15 => '付款方式',
  26. 16 => '发货状态',
  27. 17 => '物流公司',
  28. 18 => '安装方式',
  29. 19 => '紧急程度',
  30. 20 => '产品单位',
  31. 21 => '跟进方式',
  32. 22 => '产品价格名'
  33. ];
  34. }