2025-04-24 19:31:28 +08:00

46 lines
1.2 KiB
C#
Raw 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 JiShe.CollectBus.Protocol.Dto;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JiShe.CollectBus.Protocol.Contracts.Protocol.Dto
{
public class AFN10_F66_AnalysisDto
{
/// <summary>
/// 定时发送周期
/// 1:用 D6D7 编码表示,取值 03 依次表示分、时、日、月
/// 2:用 D0D5 表示,为定时上报数据的时间周期
/// </summary>
public int Cycle { get; set; }
/// <summary>
/// 定时发送周期(单位)
/// </summary>
public int Unit { get; set; }
/// <summary>
/// 发送基准时间
/// </summary>
public DateTime BaseTime { get; set; }
/// <summary>
/// 曲线数据提取倍率
/// </summary>
public int CurveRatio { get; set; }
/// <summary>
/// 任务号
/// </summary>
public int Pn { get; set; }
public List<SetAutoItemCodeDetails> Details { get; set; } = new List<SetAutoItemCodeDetails>();
}
public class SetAutoItemCodeDetails
{
public int Pn { get; set; }
public int Fn { get; set; }
}
}