using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace OpenAuth.Repository.Domain
{
///
///
///
[SugarTable("drone_point_data")]
public partial class DronePointData
{
public DronePointData()
{
}
///
/// Desc:
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey = true)]
public string gid { 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; }
}
}