using SqlSugar; using System; using System.Collections.Generic; using System.Text; namespace ZR.Model.System { [Tenant("0")] [SugarTable("sys_file")] public class SysFile { /// /// 描述 : 自增id /// 空值 : false /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public long Id { get; set; } /// /// 描述 : 文件名 /// 空值 : true /// public string FileName { get; set; } /// /// 描述 : 文件存储地址 /// 空值 : true /// public string FileUrl { get; set; } /// /// 描述 : 仓库位置 /// 空值 : true /// public string StorePath { get; set; } /// /// 描述 : 文件大小 /// 空值 : true /// public string FileSize { get; set; } /// /// 描述 : 文件扩展名 /// 空值 : true /// public string FileExt { get; set; } /// /// 描述 : 创建人 /// 空值 : true /// public string Create_by { get; set; } /// /// 描述 : 上传时间 /// 空值 : true /// public DateTime? Create_time { get; set; } /// /// 描述 : 存储类型 /// 空值 : true /// public int? StoreType { get; set; } /// /// 描述 : 访问路径 /// 空值 : true /// public string AccessUrl { get; set; } } }