23 lines
553 B
C#
Raw Normal View History

2021-11-27 09:43:04 +08:00
using SqlSugar;
using System;
2021-08-23 16:57:25 +08:00
using System.Collections.Generic;
using System.Text;
namespace ZR.Model.System
{
2021-11-27 09:43:04 +08:00
[Tenant("0")]
[SugarTable("sys_file")]
2021-08-23 16:57:25 +08:00
public class SysFile
{
public int Id { get; set; }
public string FilePath { get; set; }
public string FileName { get; set; }
public string StorePath { get; set; }
public string AccessPat { get; set; }
public int FileSize { get; set; }
public string FileExt { get; set; }
public DateTime? AddTime { get; set; }
}
}