using Yw.Entity;
namespace HStation.Model
{
///
/// 业务站
///
[SysType("xhs-projectitem")]
[SugarTable("xhs_projectitem")]
public class XhsProjectItem : BaseEntity, IParas, IFlags, ITagName, ISorter, IUseStatus, System.ICloneable
{
///
///
///
public XhsProjectItem()
{ }
///
///
///
public XhsProjectItem(XhsProjectItem rhs) : base(rhs)
{
this.Name = rhs.Name;
this.ProjectID = rhs.ProjectID;
this.Paras = rhs.Paras;
this.Flags = rhs.Flags;
this.TagName = rhs.TagName;
this.UseStatus = rhs.UseStatus;
this.NO = rhs.NO;
this.SortCode = rhs.SortCode;
this.Description = rhs.Description;
this.CreateUserID = rhs.CreateUserID;
this.CreateTime = rhs.CreateTime;
this.Version = rhs.Version;
}
public void Reset(XhsProjectItem rhs)
{
this.Name = rhs.Name;
this.NO = rhs.NO;
this.ProjectID = rhs.ProjectID;
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.CreateUserID = rhs.CreateUserID;
this.CreateTime = rhs.CreateTime;
this.Version = rhs.Version;
}
///
/// 项目ID
///
public long ProjectID { get; set; }
///
/// 编号
///
public string NO { 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 XhsProjectItem Clone()
{
return (XhsProjectItem)this.MemberwiseClone();
}
object ICloneable.Clone()
{
return this.MemberwiseClone();
}
}
}