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.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;
}
///
/// GUID 用于升级
///
public string GID { 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 DateTime CreateTime { get; set; }
///
/// 版本
///
public int Version { get; set; }
///
///
///
public XhsProject Clone()
{
return (XhsProject)this.MemberwiseClone();
}
object ICloneable.Clone()
{
return this.MemberwiseClone();
}
}
}