using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace OpenAuth.Repository.Domain
{
///
///无人机关联文件
///
[SugarTable("drone_files")]
public partial class DroneFiles
{
public DroneFiles(){
}
///
/// Desc:
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey=true)]
public string Id {get;set;}
///
/// Desc:路径
/// Default:
/// Nullable:True
///
public string path {get;set;}
///
/// Desc:0图片 1视频
/// Default:
/// Nullable:True
///
public int? type {get;set;}
///
/// Desc:表名
/// Default:
/// Nullable:True
///
public string tablename {get;set;}
///
/// Desc:创建时间
/// Default:
/// Nullable:True
///
public DateTime? createtime {get;set;}
///
/// Desc:创建人
/// Default:
/// Nullable:True
///
public string createuser {get;set;}
///
/// Desc:创建人姓名
/// Default:
/// Nullable:True
///
public string createusername {get;set;}
///
/// Desc:是否删除
/// Default:
/// Nullable:True
///
public int? is_delete {get;set;}
///
/// Desc:关联id
/// Default:
/// Nullable:True
///
public string relid {get;set;}
///
/// Desc:纬度
/// Default:
/// Nullable:True
///
public string latitude {get;set;}
///
/// Desc:经度
/// Default:
/// Nullable:True
///
public string longitude {get;set;}
///
/// Desc:拍照角度
/// Default:
/// Nullable:True
///
public string angle {get;set;}
///
/// Desc:标签
/// Default:
/// Nullable:True
///
public string tag {get;set;}
}
}