30 lines
832 B
C#
30 lines
832 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace OpenAuth.App.ServiceApp.FireManagement.Response
|
|
{
|
|
public class RYResApp
|
|
{
|
|
public string CreateId { get; set; }
|
|
public string Name { get; set; }
|
|
public DateTime CreateTime { get; set; }
|
|
public string Lng { get; set; }
|
|
public string Lat { get; set; }
|
|
public string Type { get; set; }
|
|
public int Identity { get; set; }
|
|
public string Phone { get; set; }
|
|
public string UnitName { get; set; }
|
|
/// <summary>
|
|
/// 是否置顶
|
|
/// </summary>
|
|
public int top { get; set; }
|
|
/// <summary>
|
|
/// 是否是联系人
|
|
/// </summary>
|
|
public int iscontacts { get; set; }
|
|
}
|
|
}
|