using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace JiShe.CollectBus.EnergySystem.Dto { public class EquitDubgInput: BaseInput { public string ItemCode { get; set; } public int FocusID { get; set; } public string Data { get; set; } /// /// 表计类型 /// 电表= 1,水表= 2,燃气表= 3,热能表= 4, /// public int MeterType { get; set; } public bool IsManual { get; set; } = true; public string TaskId { get; set; } } }