From 168fa6d53cf21bedeb65b299603b6961b93c1b41 Mon Sep 17 00:00:00 2001 From: 13693261870 <252740454@qq.com> Date: 星期一, 21 八月 2023 16:43:29 +0800 Subject: [PATCH] 修改元数据实体类,添加数据插入方法 --- DataLoader/Model/SysMeta.cs | 44 ++++++++++++++++++++++++++++++++++++++------ 1 files changed, 38 insertions(+), 6 deletions(-) diff --git a/DataLoader/Model/SysMeta.cs b/DataLoader/Model/SysMeta.cs index 494cfff..f2e52f3 100644 --- a/DataLoader/Model/SysMeta.cs +++ b/DataLoader/Model/SysMeta.cs @@ -1,4 +1,7 @@ -锘縰sing System; +锘縰sing OSGeo.GDAL; +using System; +using System.Runtime.InteropServices.ComTypes; +using System.Security.Policy; namespace DataLoader.Model { @@ -7,15 +10,16 @@ /// </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 dirid { set; get; } - - public int depid { set; get; } public int verid { set; get; } @@ -45,6 +49,34 @@ public string geom { set; get; } - public SysMeta() { } + 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; } } } -- Gitblit v1.9.3