管道基础大数据平台系统开发-【CS】-ExportMap
OK
13693261870
2024-09-27 566e0d21293a5fe6423fd7a16541bce00eeb2e38
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
using OSGeo.GDAL;
using System;
using System.Runtime.InteropServices.ComTypes;
using System.Security.Policy;
 
namespace DataLoader.Model
{
    /// <summary>
    /// 元数据类
    /// </summary>
    public class SysMeta
    {
        public SysMeta() { }
 
        /// <summary>
        /// 主键ID
        /// </summary>
        public int id { set; get; }
 
        /// <summary>
        /// 记录GUID
        /// </summary>
        public string eventid { set; get; }
 
        /// <summary>
        /// 父元数据ID:0-没有
        /// </summary>
        public int metaid { set; get; }
 
        /// <summary>
        /// 版本ID
        /// </summary>
        public int verid { set; get; }
 
        /// <summary>
        /// 名称
        /// </summary>
        public string name { set; get; }
 
        /// <summary>
        /// 文件类型/扩展名
        /// </summary>
        public string type { set; get; }
 
        /// <summary>
        /// 文件GUID
        /// </summary>
        public string guid { set; get; }
 
        /// <summary>
        /// 存储路径
        /// </summary>
        public string path { set; get; }
 
        /// <summary>
        /// 大小:单位MB
        /// </summary>
        public double sizes { set; get; }
 
        /// <summary>
        /// 表名
        /// </summary>
        public string tab { set; get; }
 
        /// <summary>
        /// 行数
        /// </summary>
        public int rows { set; get; }
 
        /// <summary>
        /// 创建人ID
        /// </summary>
        public int create_user { set; get; }
 
        /// <summary>
        /// 创建时间
        /// </summary>
        public DateTime create_time { set; get; }
 
        /// <summary>
        /// 更新人ID
        /// </summary>
        public int update_user { set; get; }
 
        /// <summary>
        /// 更新时间
        /// </summary>
        public DateTime update_time { set; get; }
 
        /// <summary>
        /// 备注
        /// </summary>
        public string bak { set; get; }
 
        /// <summary>
        /// 空间位置
        /// </summary>
        public string geom { set; get; }
 
        /// <summary>
        /// 图层
        /// </summary>
        public string layer { set; get; }
 
        /// <summary>
        /// 单位编码
        /// </summary>
        public string depcode { set; get; }
 
        /// <summary>
        /// 目录编码
        /// </summary>
        public string dircode { set; get; }
 
        /// <summary>
        /// 是/否为元数据
        /// </summary>
        public int ismeta { set; get; }
 
        /// <summary>
        /// 传感器类型
        /// </summary>
        public int sensortype { set; get; }
 
        /// <summary>
        /// 采集时间
        /// </summary>
        public DateTime? acq_time { set; get; }
 
        /// <summary>
        /// 分辨率
        /// </summary>
        public string resolution { set; get; }
 
        /// <summary>
        /// 行列号
        /// </summary>
        public string gridsize { set; get; }
 
        /// <summary>
        /// 坐标系统
        /// </summary>
        public string coor_sys { set; get; }
 
        /// <summary>
        /// EPSG编码
        /// </summary>
        public string epsg { set; get; }
 
        /// <summary>
        /// 高程基准
        /// </summary>
        public string h_datum { set; get; }
 
        /// <summary>
        /// 元数据类型
        /// </summary>
        public int mata_type { set; get; }
 
        /// <summary>
        /// 波段数
        /// </summary>
        public string bands { set; get; }
 
        /// <summary>
        /// 最小值
        /// </summary>
        public string min { set; get; }
 
        /// <summary>
        /// 最小大值
        /// </summary>
        public string max { set; get; }
 
        /// <summary>
        /// 波段数据类型
        /// </summary>
        public string band_type { set; get; }
 
        /// <summary>
        /// 数据颜色表
        /// </summary>
        public string ct { set; get; }
    }
}