using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace LangGuan.Command.Model
{
///
/// 导出
///
public class ExportModel
{
///
/// 设备ID
///
public string deviceId { get; set; }
///
/// PM2.5浓度
///
public double a34004 { get; set; }
///
/// PM10浓度
///
public double a34002 { get; set; }
///
/// TSP浓度
///
public double a34001 { get; set; }
///
/// 温度
///
public double a01001 { get; set; }
///
/// 湿度
///
public double a01002 { get; set; }
///
/// 大气压
///
public double a01006 { get; set; }
///
/// 风速
///
public double a01007 { get; set; }
///
/// 风向
///
public double a01008 { get; set; }
///
/// 时间
///
public string createtime { get; set; }
}
}