FileManage
using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace PT.Model { public class FileManage { [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public int Id { get; set; } /// <summary> /// 文件guid名(包括扩展名) /// </summary> public string FileGuidName { get; set; } /// <summary> /// 文件名(包括扩展名) /// </summary> public string FileName { get; set; } /// <summary> /// 文件路径 /// </summary> public string FilePath { get; set; } /// <summary> /// 文件大小(字节) /// </summary> public Int64 FileSize { get; set; } /// <summary> /// 关联表名 /// </summary> public string TargetTable { get; set; } /// <summary> /// 关联表主键ID /// </summary> public string TargetId { get; set; } /// <summary> /// 关联表字段 /// </summary> public string TargetField { get; set; } /// <summary> /// 备注 /// </summary> public string Remark { get; set; } /// <summary> /// 是否删除:0否1是 /// </summary> public bool IsDelete { get; set; } public string CreatBy { set; get; } public DateTime? CreatDate { set; get; } } }