管道基础大数据平台系统开发-【CS】-ExportMap
13693261870
2023-08-21 168fa6d53cf21bedeb65b299603b6961b93c1b41
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
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>
        /// 
        /// </summary>
        public int id { set; get; }
 
        public string eventid { set; get; }
 
        public int metaid { set; get; }
 
        public int verid { set; get; }
 
        public string name { set; get; }
 
        public string type { set; get; }
 
        public string guid { set; get; }
 
        public string path { set; get; }
 
        public double sizes { set; get; }
 
        public string tab { set; get; }
 
        public int rows { set; get; }
 
        public int create_user { set; get; }
 
        public DateTime create_time { set; get; }
 
        public int update_user { set; get; }
 
        public DateTime update_time { set; get; }
 
        public string bak { set; get; }
 
        public string geom { set; get; }
 
        public string layer { set; get; }
 
        public string depcode { set; get; }
 
        public string dircode { set; get; }
 
        public int ismeta { set; get; }
 
        public string sensortype { set; get; }
 
        public DateTime acq_time { set; get; }
 
        public string resolution { set; get; }
 
        public string gridsize { set; get; }
 
        public string coor_sys { set; get; }
 
        public string epsg { set; get; }
 
        public string h_datum { set; get; }
 
        public string mata_type { set; get; }
 
        public string bands { set; get; }
 
        public string band_type { set; get; }
 
        public string ct { set; get; }
    }
}