using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenAuth.Repository.Domain
{
///
///无人机案件
///
[SugarTable("view_drone_caseinfo_total")]
public class ViewDroneCaseinfoTotal
{
public string Id { get; set; }
///
/// Desc:案件编号
/// Default:
/// Nullable:True
///
public string case_no { get; set; }
///
/// Desc:类型
/// Default:
/// Nullable:True
///
public string typename { get; set; }
///
/// Desc:县
/// Default:
/// Nullable:True
///
public string countyname { get; set; }
///
/// Desc:镇
/// Default:
/// Nullable:True
///
public string streetname { get; set; }
///
/// Desc:村
/// Default:
/// Nullable:True
///
public string communityname { get; set; }
///
/// Desc:专题名称
/// Default:
/// Nullable:True
///
public string laiyuan { get; set; }
///
/// Desc:专题名称
/// Default:
/// Nullable:True
///
public int handle_status_id { get; set; }
///
/// Desc:专题名称
/// Default:
/// Nullable:True
///
public string handle_status_name { get; set; }
}
}