BasicType.php 589 B

12345678910111213141516171819202122232425
  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. ];
  21. }