BasicType.php 1.3 KB

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