lixiaojun
2022-11-30 eab37249501e3b10181f60d237995e17d2d52491
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
using System;
using System.Text;
using System.Collections.Generic;
using System.Data;
using System.Runtime.Serialization;
using System.ComponentModel.DataAnnotations;
using System.Linq;
 
namespace IStation.Model
{
    /// <summary>
    /// InspectRecordFile
    /// </summary>    
    public class InspectRecordFile
    {
        /// <summary>
        /// 文件类型
        /// </summary>
        public enum eFileType
        {
            /// <summary>
            /// 
            /// </summary>
            [Display(Name = "图片")]
            图片 = 0,
            /// <summary>
            /// 
            /// </summary>
            [Display(Name = "视频")]
            视频 = 1,
            /// <summary>
            /// 
            /// </summary>
            [Display(Name = "音频")]
            音频 = 2
        }
 
        #region MyRegion
        /// <summary>
        /// ID
        /// </summary>    
        public long ID { get; set; }
 
        /// <summary>
        /// RecordID
        /// </summary>    
        public long RecordID { get; set; }
 
        /// <summary>
        /// FileType
        /// </summary>    
        public IStation.Model.InspectRecordFile.eFileType FileType { get; set; }
 
        /// <summary>
        /// DispName
        /// </summary>    
        public string DispName { get; set; }
 
        /// <summary>
        /// DataSetFile
        /// </summary>    
        public string DataSetFile { get; set; }
 
        /// <summary>
        /// UploadTime
        /// </summary>    
        public string UploadTime { get; set; } 
        #endregion
 
    }
 
}