namespace HStation.Vmo { public class AssetsPackageMainVmo { public long ID { get; set; } /// /// 系列 id /// public long SeriesID { get; set; } /// /// 编号 /// public string NO { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 类别 /// public long CatalogID { get; set; } /// /// 设备数量 /// public int PumpTotal { get; set; } /// /// 使用数量 /// public int PumpUseCount { get; set; } /// /// 排序码 /// public int SortCode { get; set; } /// /// 说明 /// public string Description { get; set; } } }