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