Fan.php 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. <?php
  2. /*
  3. * @Descripttion:
  4. * @version: 1.0.0
  5. * @Author: likang
  6. * @Date: 2022-05-27 13:34:31
  7. * @LastEditors: likang
  8. * @LastEditTime: 2022-07-18 17:05:10
  9. */
  10. namespace catchAdmin\wind\model;
  11. use catchAdmin\api\Listen;
  12. use catchAdmin\hydraulic\model\DeviceMold as ModelDeviceMold;
  13. use catcher\base\CatchModel as Model;
  14. use think\facade\Db;
  15. use catchAdmin\wind\model\get\FanGet;
  16. use catchAdmin\wind\model\search\FanSearch;
  17. use catchAdmin\permissions\model\DataRangScopeTrait;
  18. use catchAdmin\system\controller\Developer;
  19. use DeviceMold;
  20. class Fan extends Model
  21. {
  22. use Listen;
  23. use DataRangScopeTrait;
  24. use FanGet;
  25. use FanSearch;
  26. // 表名
  27. public $name = 'fan';
  28. // 数据库字段映射
  29. public $field = array(
  30. 'id',
  31. // 风厂的id
  32. 'wind_id',
  33. // 编号
  34. 'number',
  35. 'fan_model',
  36. 'out_date',
  37. 'supplier',
  38. 'longitude',
  39. 'latitude',
  40. 'info',
  41. 'address',
  42. // 创建人ID
  43. 'creator_id',
  44. // 创建时间
  45. 'created_at',
  46. // 更新时间
  47. 'updated_at',
  48. // 软删除
  49. 'deleted_at',
  50. );
  51. public function getList()
  52. {
  53. return $this->dataRange()
  54. ->catchSearch()
  55. ->append(['wind_name', 'model_name'])
  56. ->field('*')
  57. ->catchOrder()
  58. ->creator()
  59. ->paginate();
  60. }
  61. public function getFanList()
  62. {
  63. return $this->dataRange()
  64. ->catchSearch()
  65. ->field('id as value,number as name')
  66. ->catchOrder()
  67. ->select();
  68. }
  69. //根据风场的id,获取风机的机位号
  70. public function getFanListByWindId($wind_id)
  71. {
  72. $data = $this->where('wind_id', $wind_id)->select();
  73. return $data;
  74. }
  75. /**
  76. * 风机下发内容
  77. */
  78. public function addContent(&$obj)
  79. {
  80. $data = null;
  81. $content = null;
  82. $data = [
  83. 'id' => intval($obj->id),
  84. 'wnum' => Wind::where('id', $obj->wind_id)->value('number'),
  85. 'number' => intval($this->number),
  86. ];
  87. $content['data'] = $data;
  88. $content['type'] = 'Fan';
  89. return $content;
  90. }
  91. /**
  92. * @Descripttion: 风机的id
  93. * @name: likang
  94. * @param {*} $wind_num
  95. * @return {*}
  96. */
  97. public function IssuedFanModel($wind_id)
  98. {
  99. //获取风场编号
  100. //分组查询当前风场所有的风机模型
  101. $array = [];
  102. //差集
  103. $diff_array = [];
  104. $content = [];
  105. $diff_array1 = [];
  106. $fan_model = $this->where('wind_id', $wind_id)->group('fan_model')->column('fan_model');
  107. //获取风机名称
  108. $wind_num = Wind::where('id', $wind_id)->value('number');
  109. $wheres[] = ['device_type', '=', 4];
  110. $wheres[] = ['id', 'in', $fan_model];
  111. $model_name = ModelDeviceMold::where($wheres)->column('name');
  112. $where[] = ['ContentType', '=', 'FanModel'];
  113. $where[] = ['ContentId', 'like', '%' . $wind_num . '_%'];
  114. $where[] = ['Type', '=', 'add'];
  115. //获取当前风场下发的风机模型
  116. $list = Db::name('publish')->where($where)->field('ContentId')->select();
  117. //截取ContentId 获取模型名称
  118. foreach ($list as $item) {
  119. $array[] = substr(strstr($item['ContentId'], '_'), 1);
  120. }
  121. $diff_array = array_diff($array, $model_name);
  122. foreach ($diff_array as $item) {
  123. Db::name('publish')->where('ContentType', 'FanModel')->where("ContentId", $wind_num . '_' . $item)->update(
  124. [
  125. "Type" => 'delete',
  126. 'Version' => msectime()
  127. ]
  128. );
  129. }
  130. $diff_array1 = array_diff($model_name, $array);
  131. foreach ($diff_array1 as $item) {
  132. $time = msectime();
  133. $json = json_encode([
  134. 'id' => $wind_num . '_' . $item,
  135. 'wunm' => $wind_num,
  136. 'model' => $item
  137. ]);
  138. $content[] = [
  139. 'Type' => 'add',
  140. 'ContentType' => 'FanModel',
  141. 'Version' => $time,
  142. 'ContentId' => $wind_num . '_' . $item,
  143. 'Content' => $json,
  144. 'AddTime' => $time,
  145. 'Status' => 1
  146. ];
  147. }
  148. Db::name('publish')->insertAll($content);
  149. //风机 模型id
  150. }
  151. }