using Yw.Entity; namespace HStation.Entity { /// /// 用户 /// [SugarTable("transfer_file_user")] public class TransferFileUser : BaseEntity, 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; } /// /// 名称 /// [SugarColumn(Length = 50, IsNullable = true)] public string Name { get; set; } /// /// 激活时间 /// public DateTime? ActiveTime { get; set; } /// /// 失效时间 /// public DateTime? InvalidTime { get; set; } /// /// 排序码 /// public int SortCode { get; set; } /// /// 说明 /// [SugarColumn(ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = true)] public string Description { get; set; } /// /// /// public TransferFileUser Clone() { return (TransferFileUser)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }