招聘后台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

86 lines
2.1 KiB

using System;
using System.ComponentModel.DataAnnotations.Schema;
using Znyc.Recruitment.Admin.Commons.Entitys;
namespace Znyc.Recruitment.Admin.Security.Entitys
{
/// <summary>
/// 文件
/// </summary>
[Table("sys_uploadfile")]
public class UploadFileEntity : BaseEntity<long>, ICreationAudited
{
/// <summary>
/// </summary>
public UploadFileEntity()
{
Id = 0;
FileName = string.Empty;
FilePath = string.Empty;
Description = string.Empty;
FileType = string.Empty;
Extension = string.Empty;
SortCode = 0;
CreatedTime = DateTime.Now;
Thumbnail = string.Empty;
BelongApp = string.Empty;
BelongAppId = string.Empty;
IsDeleted = false;
}
/// <summary>
/// 文件名称
/// </summary>
public string FileName { get; set; }
/// <summary>
/// 文件路径
/// </summary>
public string FilePath { get; set; }
/// <summary>
/// 描述
/// </summary>
public string Description { get; set; }
/// <summary>
/// 文件类型
/// </summary>
public string FileType { get; set; }
/// <summary>
/// 文件大小
/// </summary>
public long FileSize { get; set; }
/// <summary>
/// 扩展名称
/// </summary>
public string Extension { get; set; }
/// <summary>
/// 排序
/// </summary>
public long SortCode { get; set; }
/// <summary>
/// 有效标志
/// </summary>
public virtual bool? IsEnabled { get; set; }
/// <summary>
/// 缩略图
/// </summary>
public string Thumbnail { get; set; }
/// <summary>
/// 所属应用
/// </summary>
public string BelongApp { get; set; }
/// <summary>
/// 所属应用ID
/// </summary>
public string BelongAppId { get; set; }
}
}