using Yw.Entity; namespace HStation.Entity { /// /// 业务站 /// [SysType("xhs-project")] [SugarTable("xhs_project")] public class XhsProject : BaseEntity, IParas, IFlags, ITagName, ISorter, IUseStatus, System.ICloneable { /// /// /// public XhsProject() { } /// /// /// public XhsProject(XhsProject rhs) : base(rhs) { this.GID = rhs.GID; this.ID = rhs.ID; this.PrjNumber = rhs.PrjNumber; this.Name = rhs.Name; this.Paras = rhs.Paras; this.Flags = rhs.Flags; this.TagName = rhs.TagName; this.UseStatus = rhs.UseStatus; this.SortCode = rhs.SortCode; this.Description = rhs.Description; this.CreateTime = rhs.CreateTime; this.Version = rhs.Version; this.MapPosition = rhs.MapPosition; this.CustomerName = rhs.CustomerName; } /// /// GUID 用于升级 /// public string GID { get; set; } /// /// 项目编号 /// public string PrjNumber { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 参数 /// public string Paras { get; set; } /// /// 标签 /// public string Flags { get; set; } /// /// 标志 /// public string TagName { get; set; } /// /// 使用状态 /// public int UseStatus { get; set; } /// /// 排序码 /// public int SortCode { get; set; } /// /// 说明 /// public string Description { get; set; } /// /// 创建人 /// public long CreateUserID { get; set; } /// /// 创建显示名称 /// public string CreateUserDisplayName { get; set; } /// /// 创建时间 /// public DateTime CreateTime { get; set; } /// /// 版本 /// public int Version { get; set; } /// /// 项目地址(经度,维度) /// public string MapPosition { get; set; } /// /// 项目详细地址 /// public string Address { get; set; } /// /// 项目的客户名称 /// public string CustomerName { get; set; } /// /// /// public XhsProject Clone() { return (XhsProject)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }