using System;
using System.ComponentModel.DataAnnotations.Schema;
using OpenAuth.Repository.Core;
using SqlSugar;
namespace OpenAuth.Repository.Domain
{
///
/// 文件
///
[SugarTable("sys_uploadfile")]
public partial class SysUploadFile
{
[SugarColumn(IsPrimaryKey = true)]
public long Id { get; set; }
///
/// 附件夹主键
///
public string FolderId { get; set; }
///
/// 文件名称
///
public string FileName { get; set; }
///
/// 文件路径
///
public string FilePath { get; set; }
///
/// 描述
///
public string Description { get; set; }
///
/// 文件类型
///
public string FileType { get; set; }
///
/// 文件大小
///
public int? FileSize { get; set; }
///
/// 扩展名称
///
public string Extension { get; set; }
///
/// 是否可用
///
public bool Enable { get; set; }
///
/// 排序
///
public int SortCode { get; set; }
///
/// 删除标识
///
public bool DeleteMark { get; set; }
///
/// 上传人
///
public System.Guid? CreateUserId { get; set; }
///
/// 上传人姓名
///
public string CreateUserName { get; set; }
///
/// 上传时间
///
public System.DateTime CreateTime { get; set; }
///
/// 缩略图
///
public string Thumbnail { get; set; }
///
/// 所属应用
///
public string BelongApp { get; set; }
///
/// 所属应用ID
///
public string BelongAppId { get; set; }
}
}