StolenVehicle.php 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <?php
  2. namespace catchAdmin\yunying\model;
  3. use catcher\base\CatchModel as Model;
  4. use catchAdmin\permissions\model\DataRangScopeTrait;
  5. use catchAdmin\yunying\model\Vehicle;
  6. class StolenVehicle extends Model
  7. {
  8. use DataRangScopeTrait;
  9. // 表名
  10. public $name = 'stolen_vehicles';
  11. // 数据库字段映射
  12. public $field = array(
  13. 'id',
  14. // 被盗车id
  15. 'vehicle_id',
  16. // 描述
  17. 'description',
  18. // 被盗时间
  19. 'stolen_time',
  20. // 处理结果
  21. 'result',
  22. // 联系电话
  23. 'telephone',
  24. // 创建人ID
  25. 'creator_id',
  26. // 创建时间
  27. 'created_at',
  28. // 更新时间
  29. 'updated_at',
  30. // 软删除
  31. 'deleted_at',
  32. );
  33. /**
  34. * 获取被盗车辆列表
  35. */
  36. public function getStolenList($field,$order)
  37. {
  38. $res = $this->dataRange()
  39. ->catchSearch()
  40. ->append(['license_plate'])
  41. ->order($this->aliasField($field), $order)
  42. ->paginate();
  43. return $res;
  44. }
  45. /**
  46. * 获取车牌号码
  47. */
  48. public function getLicensePlateAttr($value)
  49. {
  50. $vehicle_id = $this->getData('vehicle_id');
  51. return (new Vehicle())->where('id',$vehicle_id)->value('license_plate');
  52. }
  53. /**
  54. * 根据车牌号码搜索
  55. */
  56. public function searchLicensePlateAttr($query,$value)
  57. {
  58. $vehicle_id = (new Vehicle())->where('license_plate',trim($value))->value('id');
  59. return $query->where('vehicle_id',$vehicle_id);
  60. }
  61. /**
  62. * 根据处理结果搜索
  63. */
  64. public function searchResultAttr($query,$value)
  65. {
  66. return $query->where('result',$value);
  67. }
  68. }