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_F10_AnalysisDto
{
///
/// 本次电能表/交流采样装置配置数量 n
///
public int ConfigNum { get; set; }
///
/// 电能表/交流采样装置配置信息
///
public List AFN10F10Entitys { get; set; } = new List();
}
public class AFN10F10Entity
{
///
/// 电能表/交流采样装置序号
///
public int SerialNum { get; set; }
///
/// 所属测量点号
///
public int Point { get; set; }
///
/// 通信速率
///
public int BaudRate { get; set; }
///
/// 端口号
///
public int Port { get; set; }
///
/// 通信协议类型
///
public string RuleType { get; set; }
///
/// 通信地址
///
public string ComAddress { get; set; }
///
/// 通信密码
///
public string ComPwd { get; set; }
///
/// 电能费率个数
///
public int ElectricityRatesNum { get; set; }
///
/// 有功电能示值整数位及小数位个数
///
public int IntegerBitsNum { get; set; }
///
/// 有功电能示值小数位个数
///
public int DecimalPlacesNum { get; set; }
///
/// 所属采集器通信地址
///
public string CollectorAddress{ get; set; }
///
/// 用户大类号
///
public int UserCategoryNum { get; set;}
///
/// 用户小类号
///
public int UserSubclassNum { get; set; }
}
}