浏览代码

测温定位警告过滤

develop
H Vs 5 个月前
父节点
当前提交
7e06795e97
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. +2
    -0
      GpsCardGatewayPosition.Service/MqProducer/MqProcessLogic.cs

+ 2
- 0
GpsCardGatewayPosition.Service/MqProducer/MqProcessLogic.cs 查看文件

@@ -81,6 +81,8 @@ namespace GpsCardGatewayPosition.Service.MqProducer
public async Task ProcessWxTemperatureAsync(string messageId, TemperatureInfoModel temp, LocationType type = default, MethodType method = default)
{
if (!_configServiceAccess.EnablePushWx) return;
// 小于34过滤 或者 大于41过滤
if (temp.Temperature < 34 || temp.Temperature > 41) return;

DateTime time = temp.TempTime ?? DateTime.Now;
//取消测温30分钟有效性限制


正在加载...
取消
保存