namespace IStation.Application.SZJT { /// /// /// public class MeterListItemMobileDto { /// /// /// public MeterListItemMobileDto(Yw.Model.Equipment rhs) { this.ID = rhs.ID; this.Name = rhs.Name; this.ModelType = rhs.ModelType; this.Specification = rhs.Specification; this.SortCode = rhs.SortCode; this.Description = rhs.Description; } /// /// id /// public long ID { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 型号 /// public string ModelType { get; set; } /// /// 规格 /// public string Specification { get; set; } /// /// 地址 /// public string Address { get; set; } /// /// 排序码 /// public int SortCode { get; set; } /// /// 说明 /// public string Description { get; set; } } }