Cooperation.php 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <?php
  2. namespace app\common\model;
  3. use think\Model;
  4. class Cooperation extends Model
  5. {
  6. // 表名
  7. protected $name = 'cooperation';
  8. // 自动写入时间戳字段
  9. protected $autoWriteTimestamp = 'integer';
  10. // 定义时间戳字段名
  11. protected $createTime = 'createtime';
  12. protected $updateTime = 'updatetime';
  13. protected $deleteTime = false;
  14. // 追加属性
  15. protected $append = [
  16. //'cooperation_status_text',
  17. ];
  18. public function getCooperationStatusList()
  19. {
  20. return ['1' =>'待联系', '2' =>'已联系'];
  21. }
  22. public function getCooperationStatusTextAttr($value, $data)
  23. {
  24. $value = $value ? $value : (isset($data['cooperation_status']) ? $data['cooperation_status'] : '');
  25. $list = $this->getCooperationStatusList();
  26. return isset($list[$value]) ? $list[$value] : '';
  27. }
  28. public function user()
  29. {
  30. return $this->belongsTo('User', 'user_id', 'id',[],'LEFT')->setEagerlyType(0);
  31. }
  32. public function servicetype()
  33. {
  34. return $this->belongsTo('Servicetype', 'servicetype_id', 'id',[],'LEFT')->setEagerlyType(0);
  35. }
  36. }