using SqlSugar; namespace NewPdaSqlServer.entity; /// /// [SugarTable("MES_FILE")] public class MesFile { /// /// 主键 /// [SugarColumn(ColumnName = "guid", IsPrimaryKey = true)] public Guid Guid { get; set; } /// /// 父亲Guid /// [SugarColumn(ColumnName = "parent_Guid")] public Guid? ParentGuid { get; set; } /// /// 文件标题 /// [SugarColumn(ColumnName = "file_Title")] public string? FileTitle { get; set; } /// /// 文件类型 /// [SugarColumn(ColumnName = "file_Type")] public string? FileType { get; set; } /// /// 文件路径 /// [SugarColumn(ColumnName = "url_Path")] public string? UrlPath { get; set; } /// /// 上传者 /// [SugarColumn(ColumnName = "create_by")] public string? CreateBy { get; set; } /// /// 上传时间 /// [SugarColumn(ColumnName = "create_date")] public DateTime? CreateDate { get; set; } }