Compare commits

...

2 Commits

Author SHA1 Message Date
zhangbin 5b6e9421bb 合并 2025-04-01 08:56:36 +08:00
zhangbin d2b9e683b6 类型获取位置信息 2025-04-01 08:47:38 +08:00
1 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenAuth.App.ServiceApp.FireManagement.Response
{
public class UserOnLineTypeResp
{
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; }
}
}