namespace HStation.Dto
{
///
///
///
public class TransferFileUserStdDto
{
///
///
///
public TransferFileUserStdDto() { }
///
///
///
public TransferFileUserStdDto(Model.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;
}
///
/// id
///
public long ID { get; set; }
///
/// 名称
///
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; }
}
}