namespace Yw.Entity
{
///
/// 系统通用文件
///
[SugarTable("sys_comm_file")]
public class SysCommFile : BaseEntity, ISorter, IFlags, System.ICloneable
{
///
///
///
public SysCommFile() { }
///
///
///
public SysCommFile(SysCommFile rhs) : base(rhs)
{
this.GroupName = rhs.GroupName;
this.FileName = rhs.FileName;
this.FileFormat = rhs.FileFormat;
this.FileSize = rhs.FileSize;
this.FileSuffix = rhs.FileSuffix;
this.Catagory = rhs.Catagory;
this.Flags = rhs.Flags;
this.StorageHouse = rhs.StorageHouse;
this.StorageCode = rhs.StorageCode;
this.SortCode = rhs.SortCode;
this.Description = rhs.Description;
}
///
/// 组名称
///
public string GroupName { get; set; }
///
/// 文件名称
///
public string FileName { get; set; }
///
/// 文件格式
///
public eFileFormat FileFormat { get; set; }
///
/// 文件大小
///
public long FileSize { get; set; }
///
/// 文件后缀
///
public string FileSuffix { get; set; }
///
/// 分类
///
public string Catagory { get; set; }
///
/// 标签
///
public string Flags { get; set; }
///
/// 存储仓库
///
public string StorageHouse { get; set; }
///
/// 存储编码
///
public string StorageCode { get; set; }
///
/// 排序
///
public int SortCode { get; set; }
///
/// 说明
///
public string Description { get; set; }
///
///
///
public SysCommFile Clone()
{
return (SysCommFile)this.MemberwiseClone();
}
object ICloneable.Clone()
{
return this.MemberwiseClone();
}
}
}