BasicType.php 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. const type_20 = 20;
  11. const type_4 = 4;
  12. const type_2 = 2;
  13. const type_10 = 10;
  14. public static $type = [
  15. 1 => '客户意向类型',
  16. 2 => '客户来源类型',
  17. 3 => '客户类型(T9改装)',
  18. 4 => '客户电话类型',
  19. 5 => '进展阶段类型',
  20. 6 => '客户状态类型',
  21. 7 => '决策关系类型',
  22. // 8 => '客户分级',
  23. 9 => '状态类型',
  24. 10 => '车型',
  25. 11 => '订单类型',
  26. // 12 => '成交类型',
  27. // 13 => '合同状态',
  28. // 14 => '合同类型',
  29. 15 => '付款方式',
  30. // 16 => '发货状态',
  31. 17 => '物流公司',
  32. 18 => '安装方式',
  33. 19 => '紧急程度',
  34. 20 => '产品单位',
  35. 21 => '跟进方式',
  36. 22 => '产品价格',
  37. 23 => '安装地点',
  38. 24 => '平台类型',
  39. // 25 => '业务类型',
  40. // 26 => '销售类型',
  41. 27 => '采购类型',
  42. 28 => '默认账户',
  43. 29 => '客户简称',
  44. 30 => '客户类型(T9二手车)',
  45. 31 => '客户类型(T9分社)',
  46. ];
  47. }