using System;
|
|
namespace DataLoader.Model
|
{
|
/// <summary>
|
/// 元数据
|
/// </summary>
|
public class SysMeta
|
{
|
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; }
|
|
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 SysMeta() { }
|
}
|
}
|