jy-plc/Command/Model/columnView.cs

25 lines
512 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace LangGuan.Command.Model
{
/// <summary>
///
/// </summary>
public class columnView
{
/// <summary>
///
/// </summary>
public string hour { get; set; }
/// <summary>
/// a34004=PM2.5浓度,a34002=PM10,a34001=tsp浓度
/// </summary>
public string type { get; set; }
public double value { get; set; }
}
}