using System; using System.Linq; using System.Text; using SqlSugar; namespace OpenAuth.Repository.Domain { /// /// /// [SugarTable("drone_cloudland_query")] public partial class DroneCloudLandQuery { public DroneCloudLandQuery(){ } /// /// Desc:主键 /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true)] public string Id {get;set;} /// /// Desc:土地分类 /// Default: /// Nullable:True /// public string name { 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 DateTime? ReceiveTime {get;set;} /// /// Desc:接收结果 /// Default: /// Nullable:True /// [SugarColumn(IsJson=true)] public string ReceiveContent {get;set;} /// /// Desc:案件id /// Default: /// Nullable:True /// public string caseid { get; set; } } }