1
yhj
2024-07-24 5e5d945e91568b973faa27d8ab0bcef99fc4a6c5
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
namespace CSFrameworkV5.Models
{
    public class TAttachFile
    {
        private string _DocID;
        private byte[] _FileBody;
        private int _FileID;
        private string _FileName;
        private decimal _FileSize;
        private string _FileTitle;
        private string _FileType;
 
        private byte[] _IconLarge;
        private byte[] _IconSmall;
        private string _IsDroped;
 
        public string DocID
        {
            get => _DocID;
            set => _DocID = value;
        }
 
        public byte[] FileBody
        {
            get => _FileBody;
            set => _FileBody = value;
        }
 
        public int FileID
        {
            get => _FileID;
            set => _FileID = value;
        }
 
        public string FileName
        {
            get => _FileName;
            set => _FileName = value;
        }
 
        public decimal FileSize
        {
            get => _FileSize;
            set => _FileSize = value;
        }
 
        public string FileTitle
        {
            get => _FileTitle;
            set => _FileTitle = value;
        }
 
        public string FileType
        {
            get => _FileType;
            set => _FileType = value;
        }
 
        public byte[] IconLarge
        {
            get => _IconLarge;
            set => _IconLarge = value;
        }
 
        public byte[] IconSmall
        {
            get => _IconSmall;
            set => _IconSmall = value;
        }
 
        public string IsDroped
        {
            get => _IsDroped;
            set => _IsDroped = value;
        }
    }
}