Lssue.php 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. <?php
  2. namespace catchAdmin\system\model;
  3. use catchAdmin\hydraulic\model\HydEquipment;
  4. use catchAdmin\hydraulic\model\Hydraulic;
  5. use catcher\base\CatchModel as Model;
  6. use think\facade\Db;
  7. class Lssue extends Model
  8. {
  9. // 表名
  10. public $name = 'lssue';
  11. // 数据库字段映射
  12. public $field = array(
  13. 'id',
  14. // 内容
  15. 'file_name',
  16. // 所有设备
  17. 'equ_ids',
  18. // 指令类型
  19. 'type',
  20. //指令类型
  21. 'directive',
  22. //详情
  23. 'info',
  24. // 创建人ID
  25. 'creator_id',
  26. // 创建时间
  27. 'created_at',
  28. // 更新时间
  29. 'updated_at',
  30. // 软删除
  31. 'deleted_at',
  32. );
  33. public function setEquIdsAttr($value)
  34. {
  35. $data = json_encode($value);
  36. return $data;
  37. }
  38. public function getEquIdsAttr()
  39. {
  40. $data = $this->getData('equ_ids');
  41. return json_decode($data, true);
  42. }
  43. /**
  44. * @Descripttion: 下发指令
  45. * @name: likang
  46. * @return {*}
  47. */
  48. public function IssueAll($data)
  49. {
  50. $type = $data['type'];
  51. $content = [
  52. 'file_name' => $data['file_name']
  53. ];
  54. if ($type == 1) {
  55. $msetime = msectime();
  56. $cont = [
  57. 'Type' => 'directive',
  58. 'ContentType' => 'File',
  59. 'Content' => json_encode($content),
  60. 'ContentId' => md5(time() . mt_rand(1, 1000000)),
  61. 'AddTime' => $msetime,
  62. 'Version' => $msetime,
  63. 'Status' => 2
  64. ];
  65. Db::name('publish')->save($cont);
  66. }
  67. if ($type == 2) {
  68. $list = HydEquipment::alias('e')->leftJoin('hydraulic h', 'e.id = h.eq_id')
  69. ->where('e.id', 'in', $data['equ_ids'])->field('h.imei as imei')->select()->toArray();
  70. foreach ($list as $item) {
  71. if (!$item['imei']) {
  72. continue;
  73. } else {
  74. $msetime = msectime();
  75. $cont = [
  76. 'Type' => 'directive',
  77. 'ContentType' => 'File',
  78. 'Content' => json_encode($content),
  79. 'ContentId' => md5(time() . mt_rand(1, 1000000)),
  80. 'AddTime' => $msetime,
  81. 'Version' => $msetime,
  82. 'Imei' => $item['imei'],
  83. 'Status' => 2
  84. ];
  85. Db::name('publish')->save($cont);
  86. }
  87. }
  88. }
  89. }
  90. }