2025-04-30 17:11:09 +08:00

30 lines
729 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JiShe.CollectBus.Protocol
{
/// <summary>
/// 数据时间标记
/// </summary>
public class DataTimeMark
{
/// <summary>
/// 数据时间
/// </summary>
public DateTime DataTime { get; set;}
/// <summary>
/// 数据点数
/// </summary>
public int Point { get; set; }
/// <summary>
/// 冻结密度(-1、采集项本身无密度位0、无1、15分钟2、30分钟3、60分钟245、5分钟255、1分钟
/// </summary>
public int Density { get; set; }
}
}