CustomerReportDepart.php 551 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace App\Model;
  3. class CustomerReportDepart extends UseScopeBaseModel
  4. {
  5. protected $table = "customer_report_depart"; //指定表
  6. const CREATED_AT = 'crt_time';
  7. const UPDATED_AT = 'upd_time';
  8. protected $dateFormat = 'U';
  9. const type_one = 1;//归属门店
  10. const type_two = 2;//客户负责人
  11. const type_three = 3;//客户跟进记录创建人
  12. const type_list = [
  13. -1 => '待跟进',
  14. 0 => '跟进中',
  15. 1 => '联系不上',
  16. 2 => '无意向',
  17. 3 => '已成交',
  18. ];
  19. }