namespace PBS.Vmo.WE { /// /// 用水当量目录映射 /// public class CatalogueMappingVmo { /// /// /// public CatalogueMappingVmo() { } /// /// /// public CatalogueMappingVmo(Dto.WE.CatalogueMappingDto rhs) { this.ID = rhs.ID; this.CatalogueID = rhs.CatalogueID; this.ItemID = rhs.ItemID; this.Version = rhs.Version; this.Status = rhs.Status; this.CreateTime = rhs.CreateTime; } /// /// 标识 /// public long ID { get; set; } /// /// 目录标识 /// public long CatalogueID { get; set; } /// /// 项标识 /// public long ItemID { get; set; } /// /// 版本 /// public string Version { get; set; } /// /// 状态 /// public int Status { get; set; } /// /// 创建时间 /// public DateTime CreateTime { get; set; } } }