南骏 池
2025-05-19 07a9b9127da141cbc8afcb2932ed31208cf31af1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
using SqlSugar;
 
namespace NewPdaSqlServer.entity;
 
/// <summary>
/// </summary>
[SugarTable("MES_FILE")]
public class MesFile
{
    /// <summary>
    ///     主键
    /// </summary>
    [SugarColumn(ColumnName = "guid", IsPrimaryKey = true)]
    public Guid Guid { get; set; }
 
    /// <summary>
    ///     父亲Guid
    /// </summary>
    [SugarColumn(ColumnName = "parent_Guid")]
    public Guid? ParentGuid { get; set; }
 
    /// <summary>
    ///     文件标题
    /// </summary>
    [SugarColumn(ColumnName = "file_Title")]
    public string? FileTitle { get; set; }
 
    /// <summary>
    ///     文件类型
    /// </summary>
    [SugarColumn(ColumnName = "file_Type")]
    public string? FileType { get; set; }
 
    /// <summary>
    ///     文件路径
    /// </summary>
    [SugarColumn(ColumnName = "url_Path")]
    public string? UrlPath { get; set; }
 
    /// <summary>
    ///     上传者
    /// </summary>
    [SugarColumn(ColumnName = "create_by")]
    public string? CreateBy { get; set; }
 
    /// <summary>
    ///     上传时间
    /// </summary>
    [SugarColumn(ColumnName = "create_date")]
    public DateTime? CreateDate { get; set; }
}