namespace Yw.Entity
{
///
/// 系统附加文件
///
[SugarTable("sys_attach_file")]
public class SysAttachFile : BaseEntity, ISorter, System.ICloneable
{
///
///
///
public SysAttachFile() { }
///
///
///
public SysAttachFile(SysAttachFile rhs) : base(rhs)
{
this.AttachType = rhs.AttachType;
this.AttachID = rhs.AttachID;
this.GroupName = rhs.GroupName;
this.FileName = rhs.FileName;
this.FileFormat = rhs.FileFormat;
this.FileSize = rhs.FileSize;
this.FileSuffix = rhs.FileSuffix;
this.StorageHouse = rhs.StorageHouse;
this.StorageCode = rhs.StorageCode;
this.CreateUserID = rhs.CreateUserID;
this.CreateTime = rhs.CreateTime;
this.CreateUserName = rhs.CreateUserName;
this.UpdateUserID = rhs.UpdateUserID;
this.UpdateTime = rhs.UpdateTime;
this.UpdateUserName = rhs.UpdateUserName;
this.SortCode = rhs.SortCode;
this.Description = rhs.Description;
}
///
/// 附加类型
///
public string AttachType { get; set; }
///
/// 附加id
///
public long AttachID { get; set; }
///
/// 组名称
///
public string GroupName { get; set; }
///
/// 文件名称
///
public string FileName { get; set; }
///
/// 文件格式
///
public int FileFormat { get; set; }
///
/// 文件大小
///
public long FileSize { get; set; }
///
/// 文件后缀
///
public string FileSuffix { get; set; }
///
/// 存储仓库
///
public string StorageHouse { get; set; }
///
/// 存储编码
///
public string StorageCode { get; set; }
///
/// 创建人id
///
public long CreateUserID { get; set; }
///
/// 创建时间
///
public DateTime CreateTime { get; set; }
///
/// 创建人名称
///
public string CreateUserName { get; set; }
///
/// 更新人id
///
public long? UpdateUserID { get; set; }
///
/// 更新时间
///
public DateTime? UpdateTime { get; set; }
///
/// 更新人名称
///
public string UpdateUserName { get; set; }
///
/// 排序码
///
public int SortCode { get; set; }
///
/// 说明
///
public string Description { get; set; }
///
///
///
public SysAttachFile Clone()
{
return (SysAttachFile)this.MemberwiseClone();
}
object ICloneable.Clone()
{
return this.MemberwiseClone();
}
}
}