using Yw.Model;
namespace HStation.Model
{
///
/// 用户
///
public class TransferFileUser : BaseModel, ISorter, System.ICloneable
{
///
///
///
public TransferFileUser() { }
///
///
///
public TransferFileUser(TransferFileUser rhs) : base(rhs)
{
this.Name = rhs.Name;
this.ActiveTime = rhs.ActiveTime;
this.InvalidTime = rhs.InvalidTime;
this.SortCode = rhs.SortCode;
this.Description = rhs.Description;
}
///
///
///
public void Reset(TransferFileUser rhs)
{
this.ID = rhs.ID;
this.Name = rhs.Name;
this.ActiveTime = rhs.ActiveTime;
this.InvalidTime = rhs.InvalidTime;
this.SortCode = rhs.SortCode;
this.Description = rhs.Description;
}
///
/// 名称
///
public string Name { get; set; }
///
/// 激活时间
///
public DateTime? ActiveTime { get; set; }
///
/// 失效时间
///
public DateTime? InvalidTime { get; set; }
///
/// 排序码
///
public int SortCode { get; set; }
///
/// 说明
///
public string Description { get; set; }
///
///
///
public TransferFileUser Clone()
{
return new TransferFileUser(this);
}
object ICloneable.Clone()
{
return this.Clone();
}
}
}