Infrastructure/OpenAuth.App/ServiceApp/FireManagement/Request/ReciveFireClueInfo.cs

53 lines
1.1 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenAuth.App.ServiceApp.FireManagement.Request
{
public class ReciveFireClueInfo
{
/// <summary>
/// 人员名称
/// </summary>
public string ReportPerson { get; set; }
/// <summary>
/// 描述
/// </summary>
public string Describe { get; set; }
/// <summary>
/// 经度
/// </summary>
public string Lng { get; set; }
/// <summary>
/// 纬度
/// </summary>
public string Lat { get; set; }
/// <summary>
/// 地址
/// </summary>
public string Address { get; set; }
/// <summary>
/// 地区名称
/// </summary>
public string AreaName { get; set; }
/// <summary>
/// 图片地址
/// </summary>
public string Image { get; set; }
/// <summary>
/// 程度类型1-特大2-重大3-其他
/// </summary>
public int DegreeType { get; set; }
}
}