167 lines
4.3 KiB
C#
167 lines
4.3 KiB
C#
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; }
|
|
|
|
/// <summary>
|
|
/// Desc:案件编号
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string case_no { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:案件名称
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string case_name { get; set; }
|
|
/// <summary>
|
|
/// Desc:案件描述
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string case_description { get; set; }
|
|
/// <summary>
|
|
/// Desc:县
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string countyid { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:县
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string countyname { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:镇
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string streetid { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:镇
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string streetname { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:村
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string communityid { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:村
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string communityname { get; set; }
|
|
/// <summary>
|
|
/// Desc:地址
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string address { get; set; }
|
|
/// <summary>
|
|
/// Desc:无人机编号
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string drone_no { get; set; }
|
|
/// <summary>
|
|
/// Desc:经度
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public decimal? lng { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:纬度
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public decimal? lat { get; set; }
|
|
/// <summary>
|
|
/// Desc:类型
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string typeid { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:类型
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string typename { get; set; }
|
|
/// <summary>
|
|
/// Desc:备注
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string remark { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:面积
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string area { get; set; }
|
|
/// <summary>
|
|
/// Desc:农用地面积
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string nongyongdi_area { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:耕地面积
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string gengdi_area { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:永久基本农田面积
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string yongjiujibennongtian_area { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:重点区域面积
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string zhongdianquyu_area { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:生态保护红线面积
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string shengtaibaohuhongxian_area { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:国土空间规划面积
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string guotukongjianguihua_area { get; set; }
|
|
}
|
|
}
|