using OSGeo.GDAL; using System; using System.Runtime.InteropServices.ComTypes; using System.Security.Policy; namespace DataLoader.Model { /// /// 元数据类 /// public class SysMeta { public SysMeta() { } /// /// 主键ID /// public int id { set; get; } /// /// 记录GUID /// public string eventid { set; get; } /// /// 父元数据ID:0-没有 /// public int metaid { set; get; } /// /// 版本ID /// public int verid { set; get; } /// /// 名称 /// public string name { set; get; } /// /// 文件类型/扩展名 /// public string type { set; get; } /// /// 文件GUID /// public string guid { set; get; } /// /// 存储路径 /// public string path { set; get; } /// /// 大小:单位MB /// public double sizes { set; get; } /// /// 表名 /// public string tab { set; get; } /// /// 行数 /// public int rows { set; get; } /// /// 创建人ID /// public int create_user { set; get; } /// /// 创建时间 /// public DateTime create_time { set; get; } /// /// 更新人ID /// 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 int 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; } /// /// EPSG编码 /// public string epsg { set; get; } /// /// 高程基准 /// public string h_datum { set; get; } /// /// 元数据类型 /// public int mata_type { set; get; } /// /// 波段数 /// public string bands { set; get; } /// /// 最小值 /// public string min { set; get; } /// /// 最小大值 /// public string max { set; get; } /// /// 波段数据类型 /// public string band_type { set; get; } /// /// 数据颜色表 /// public string ct { set; get; } } }