11
啊鑫
2024-12-13 b2f0199d41ef80ba835bf58d6787df7f4accf7be
entity/MesFile.cs
@@ -1,9 +1,8 @@
using SqlSugar;
namespace NewPdaSqlServer.entity
{
namespace NewPdaSqlServer.entity;
    /// <summary>
    ///
    ///</summary>
    [SugarTable("MES_FILE")]
    public class MesFile
@@ -24,30 +23,29 @@
        /// 文件标题 
        ///</summary>
         [SugarColumn(ColumnName="file_Title"    )]
         public string FileTitle { get; set; }
    public string? FileTitle { get; set; }
     /// <summary>
        /// 文件类型 
        ///</summary>
         [SugarColumn(ColumnName="file_Type"    )]
         public string FileType { get; set; }
    public string? FileType { get; set; }
     /// <summary>
        /// 文件路径 
        ///</summary>
         [SugarColumn(ColumnName="url_Path"    )]
         public string UrlPath { get; set; }
    public string? UrlPath { get; set; }
     /// <summary>
        /// 上传者 
        ///</summary>
         [SugarColumn(ColumnName="create_by"    )]
         public string CreateBy { get; set; }
    public string? CreateBy { get; set; }
     /// <summary>
        /// 上传时间 
        ///</summary>
         [SugarColumn(ColumnName="create_date"    )]
         public DateTime? CreateDate { get; set; }
    }
}