BasicType.php 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?php
  2. namespace App\Model;
  3. class BasicType extends UseScopeBaseModel
  4. {
  5. protected $table = "basic_type"; //指定表
  6. const CREATED_AT = 'crt_time';
  7. const UPDATED_AT = 'upd_time';
  8. protected $dateFormat = 'U';
  9. const type_22 = 22;
  10. public static $type = [
  11. 1 => '客户意向类型',
  12. 2 => '客户来源类型',
  13. 3 => '客户类型(T9改装)',
  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. 23 => '安装地点',
  34. 24 => '平台类型',
  35. // 25 => '业务类型',
  36. // 26 => '销售类型',
  37. 27 => '采购类型',
  38. 28 => '默认账户',
  39. 29 => '客户简称',
  40. 30 => '客户类型(T9二手车)',
  41. 31 => '客户类型(T9分社)',
  42. ];
  43. }