using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenAuth.App.ServiceApp.Response
{
public class CaseInfoForUpdateResp
{
public string Id { get; set; }
///
/// Desc:案件编号
/// Default:
/// Nullable:True
///
public string case_no { get; set; }
///
/// Desc:案件名称
/// Default:
/// Nullable:True
///
public string case_name { get; set; }
///
/// Desc:案件描述
/// Default:
/// Nullable:True
///
public string case_description { get; set; }
///
/// Desc:县
/// Default:
/// Nullable:True
///
public string countyid { get; set; }
///
/// Desc:县
/// Default:
/// Nullable:True
///
public string countyname { get; set; }
///
/// Desc:镇
/// Default:
/// Nullable:True
///
public string streetid { get; set; }
///
/// Desc:镇
/// Default:
/// Nullable:True
///
public string streetname { get; set; }
///
/// Desc:村
/// Default:
/// Nullable:True
///
public string communityid { get; set; }
///
/// Desc:村
/// Default:
/// Nullable:True
///
public string communityname { get; set; }
///
/// Desc:地址
/// Default:
/// Nullable:True
///
public string address { get; set; }
///
/// Desc:无人机编号
/// Default:
/// Nullable:True
///
public string drone_no { get; set; }
///
/// Desc:经度
/// Default:
/// Nullable:True
///
public decimal? lng { get; set; }
///
/// Desc:纬度
/// Default:
/// Nullable:True
///
public decimal? lat { get; set; }
///
/// Desc:类型
/// Default:
/// Nullable:True
///
public string typeid { get; set; }
///
/// Desc:类型
/// Default:
/// Nullable:True
///
public string typename { get; set; }
///
/// Desc:备注
/// Default:
/// Nullable:True
///
public string remark { get; set; }
///
/// Desc:面积
/// Default:
/// Nullable:True
///
public string area { get; set; }
///
/// Desc:农用地面积
/// Default:
/// Nullable:True
///
public string nongyongdi_area { get; set; }
///
/// Desc:耕地面积
/// Default:
/// Nullable:True
///
public string gengdi_area { get; set; }
///
/// Desc:永久基本农田面积
/// Default:
/// Nullable:True
///
public string yongjiujibennongtian_area { get; set; }
///
/// Desc:重点区域面积
/// Default:
/// Nullable:True
///
public string zhongdianquyu_area { get; set; }
///
/// Desc:生态保护红线面积
/// Default:
/// Nullable:True
///
public string shengtaibaohuhongxian_area { get; set; }
///
/// Desc:国土空间规划面积
/// Default:
/// Nullable:True
///
public string guotukongjianguihua_area { get; set; }
}
}