using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Scriban.Syntax; namespace JiShe.CollectBus.EnergySystem.Dto { /// /// 电表档案下发输入 /// public class AmmeterArchivesDownInput:BaseInput { /// /// 采集编码 /// public string ItemCode { get; set; } /// /// 电表:1 /// public int MeterType { get; set; } public AmmeterArchivesDownDetailsInput Details { get; set; } } public class AmmeterArchivesDownDetailsInput { public int SetDeviceCount { get; set; } public List Data { get; set; } } public class AmmeterArchivesDownDetailsDataInput { /// /// 电表ID /// public string AmmeterId { get; set; } /// /// 电能表/交流采样装置序号 /// public int SerialNumber { get; set; } /// /// 所属测量点号 /// public int Pn { get; set; } /// /// 波特率 /// public int Rate { get; set; } /// /// 端口号 /// public int Port { get; set; } /// /// 规约 /// public string AgreementType { get; set; } /// /// 电表地址 /// public string Addrress { get; set; } /// /// 电表密码 /// public int Password { get; set; } /// /// 单费率:1, 复费率:4 /// public int RatesCount { get; set; } /// /// 电能示值整数位个数 /// public int IntegerCount { get; set; } /// /// 电能示值小数位个数 /// public int DecimalCount { get; set; } /// /// 采集器地址 /// public string GatherAddress { get; set; } /// /// 用户大类号 /// public string UserBigNumber { get; set; } /// /// 用户小类号 /// public string UserSmallNumber { get; set; } /// /// 电表:1 /// public int MeterType { get; set; } } }