using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LeaRun.Application.Entity.DMAManage { /// /// 片区报表实体类 /// public class PartitionReportEntity { /// /// 片区名称 /// public string DMAName { get; set; } /// /// 应抄表用户 /// public string AllUsers { get; set; } /// /// 实际抄表用户 /// public string ReadingUsers { get; set; } /// /// 实抄水量 /// public string ReadingValue { get; set; } /// /// 抄表率 /// public string Rate { get; set; } /// /// 未抄表数量 /// public string NoReadNum { get; set; } } }