WxPushResultLog.php 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <?php
  2. namespace catchAdmin\logs\model;
  3. use catcher\base\CatchModel as Model;
  4. use catchAdmin\permissions\model\DataRangScopeTrait;
  5. use catchAdmin\system\model\SysDictData;
  6. class WxPushResultLog extends Model
  7. {
  8. // 表名
  9. public $name = 'wx_push_result_log';
  10. use DataRangScopeTrait;
  11. // 数据库字段映射
  12. public $field = array(
  13. 'id',
  14. // 推送人
  15. 'username',
  16. // 推送结果
  17. 'result',
  18. // 告警RFID
  19. 'device_number',
  20. // 创建人ID
  21. 'creator_id',
  22. // 创建时间
  23. 'created_at',
  24. // 更新时间
  25. 'updated_at',
  26. // 软删除
  27. 'deleted_at',
  28. // 告警id
  29. 'alarm_id',
  30. // 告警类型
  31. 'alarm_type',
  32. );
  33. public function getList()
  34. {
  35. return $this->dataRange()
  36. ->catchSearch()
  37. ->append(['alarm_type_name'])
  38. ->order($this->aliasField('id'), 'desc')
  39. ->paginate();
  40. }
  41. public function searchUserNameAttr($query,$value,$data){
  42. return $query->where('username',$value);
  43. }
  44. public function searchDeviceNumberAttr($query,$value,$data){
  45. return $query->where('device_number',$value);
  46. }
  47. public function searchAlarmIdAttr($query,$value,$data){
  48. return $query->where('alarm_id',$value);
  49. }
  50. /**
  51. * 获取告警类型名称
  52. */
  53. public function getResultAttr($value)
  54. {
  55. $res=json_decode($value,true);
  56. if($res['success'] && $res['message']=='ok'){
  57. return '发送成功';
  58. }else{
  59. return $res['message'];
  60. }
  61. }
  62. /**
  63. * 获取告警类型名称
  64. */
  65. public function getAlarmTypeNameAttr($value)
  66. {
  67. $type = $this->getAttr('alarm_type');
  68. if (is_null($type)) {
  69. return '';
  70. }
  71. return $this->getDictValue('AlarmReason', $type);
  72. }
  73. /*
  74. * 获取字典值(文本)
  75. */
  76. public function getDictValue($typeCode,$value)
  77. {
  78. return (new SysDictData())->getValueByCode($typeCode,$value);
  79. }
  80. }