namespace HStation.Vmo { /// /// /// public class XhsProjectSiteVmo { /// /// /// public XhsProjectSiteVmo() { } /// /// /// public XhsProjectSiteVmo(XhsProjectSiteDto rhs) { this.ID = rhs.ID; this.ProjectID = rhs.ProjectID; this.Name = rhs.Name; this.Paras = rhs.Paras; this.Flags = rhs.Flags; this.UseStatus = rhs.UseStatus; this.SortCode = rhs.SortCode; this.Description = rhs.Description; } /// /// id /// public long ID { get; set; } /// /// 项目id /// public long ProjectID { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 参数 /// public Dictionary Paras { get; set; } /// /// 标签 /// public List Flags { get; set; } /// /// 使用状态 /// public Yw.Model.eUseStatus UseStatus { get; set; } /// /// 排序码 /// public int SortCode { get; set; } /// /// 说明 /// public string Description { get; set; } } }