using System; using System.Collections.Generic; using System.Text; namespace Sugar.Enties { public class HouseMeterDTO { /// /// 房产编号 /// public string hcode { get; set; } /// /// 房产名称 /// public string hname { get; set; } /// /// 数据总数 /// public int totalcount { get; set; } /// /// 仪表列表 /// public List meters { get; set; } } public class Meter { /// /// 业主 /// public string ownername { get; set; } /// /// 仪表名称 /// public string metername { get; set; } /// /// 仪表编码 /// public string pk_meterid { get; set; } /// /// 上次表数 /// public decimal amount { get; set; } /// /// 上次日期 /// public string edate { get; set; } /// /// 仪表类型名称 /// public string metertypename { get; set; } /// /// 填写表数 /// public decimal sum { get; set; } } }