duheng
2024-11-19 ca5f300a7cef85d22b5e0f9d59d117c49f9909b3
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
using Yw.Entity;
 
namespace HStation.Entity
{
    /// <summary>
    /// Revit传输文件
    /// </summary>
    [SugarTable("transfer_revit_file")]
    public class TransferRevitFile : BaseEntity, System.ICloneable
    {
        /// <summary>
        /// 
        /// </summary>
        public TransferRevitFile() { }
 
        /// <summary>
        /// 
        /// </summary>
        public TransferRevitFile(TransferRevitFile rhs) : base(rhs)
        {
            this.FileName = rhs.FileName;
            this.FileCode = rhs.FileCode;
            this.FileSize = rhs.FileSize;
            this.FileSuffix = rhs.FileSuffix;
            this.UploadTime = rhs.UploadTime;
            this.UploadUserName = rhs.UploadUserName;
            this.UploadUserID = rhs.UploadUserID;
            this.StorageHouse = rhs.StorageHouse;
            this.StorageCode = rhs.StorageCode;
            this.Description = rhs.Description;
        }
 
        /// <summary>
        /// 文件名称
        /// </summary>
        [SugarColumn(Length = 50, IsNullable = true)]
        public string FileName { get; set; }
 
        /// <summary>
        /// 文件编码
        /// </summary>
        [SugarColumn(Length = 50, IsNullable = true)]
        public string FileCode { get; set; }
 
        /// <summary>
        /// 文件大小
        /// </summary>
        public long FileSize { get; set; }
 
        /// <summary>
        /// 文件后缀
        /// </summary>    
        [SugarColumn(Length = 50, IsNullable = true)]
        public string FileSuffix { get; set; }
 
        /// <summary>
        /// 上传时间
        /// </summary>
        public DateTime UploadTime { get; set; }
 
        /// <summary>
        /// 上传人名称
        /// </summary>
        [SugarColumn(Length = 50, IsNullable = true)]
        public string UploadUserName { get; set; }
 
        /// <summary>
        /// 上传人id
        /// </summary>
        public long UploadUserID { get; set; }
 
        /// <summary>
        /// 存储仓库
        /// </summary>    
        [SugarColumn(Length = 50, IsNullable = true)]
        public string StorageHouse { get; set; }
 
        /// <summary>
        /// 存储编码
        /// </summary>    
        [SugarColumn(Length = 500, IsNullable = true)]
        public string StorageCode { get; set; }
 
        /// <summary>
        /// 说明
        /// </summary>    
        [SugarColumn(ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = true)]
        public string Description { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public TransferRevitFile Clone()
        {
            return (TransferRevitFile)this.MemberwiseClone();
        }
 
        object ICloneable.Clone()
        {
            return this.MemberwiseClone();
        }
 
 
    }
 
}