using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenAuth.Repository.Domain
{
[SugarTable("drone_shp_data_history")]
public class DroneShpDataHistory
{
///
/// Desc:
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey = true)]
public string id { get; set; }
public int gid { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string relid { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string createuser { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public DateTime? createtime { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string geom { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public decimal? area { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string export_id { get; set; }
///
/// 记录时间
///
public DateTime recordingtime { get; set; }
///
/// 记录人
///
public string recordingpeople { get; set; }
}
}