feixian_weifajianguan/OpenAuth.Repository/Domain/DroneClueReporting.cs

105 lines
2.6 KiB
C#

using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace OpenAuth.Repository.Domain
{
///<summary>
///案件上报表
///</summary>
[SugarTable("drone_cluereporting")]
public partial class DroneClueReporting
{
public DroneClueReporting(){
}
/// <summary>
/// Desc:
/// Default:
/// Nullable:False
/// </summary>
[SugarColumn(IsPrimaryKey=true)]
public long Id {get;set;}
/// <summary>
/// Desc:举报人姓名
/// Default:
/// Nullable:True
/// </summary>
public string Name {get;set;}
/// <summary>
/// Desc:电话
/// Default:
/// Nullable:True
/// </summary>
public string Phone {get;set;}
/// <summary>
/// Desc:举报内容
/// Default:
/// Nullable:True
/// </summary>
public string Content {get;set;}
/// <summary>
/// Desc:举报位置
/// Default:
/// Nullable:True
/// </summary>
public string Address {get;set;}
/// <summary>
/// Desc:经度
/// Default:
/// Nullable:True
/// </summary>
public string Lng {get;set;}
/// <summary>
/// Desc:纬度
/// Default:
/// Nullable:True
/// </summary>
public string Lat {get;set;}
/// <summary>
/// Desc:是否下发
/// Default:
/// Nullable:True
/// </summary>
public bool? IsDistribute {get;set;}
/// <summary>
/// Desc:下发时间
/// Default:
/// Nullable:True
/// </summary>
public DateTime? DistributeTime {get;set;}
/// <summary>
/// Desc:案件Id
/// Default:
/// Nullable:True
/// </summary>
public string CaseId {get;set;}
/// <summary>
/// Desc:案件编号
/// Default:
/// Nullable:True
/// </summary>
public string CaseNo {get;set;}
/// <summary>
/// Desc:创建时间
/// Default:
/// Nullable:True
/// </summary>
public DateTime? CreateTime {get;set;}
}
}