Merge remote-tracking branch 'origin/DataMaintenance' into DataMaintenance

DataMaintenance
陈伟 2025-04-01 10:14:29 +08:00
commit f561bfb15b
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; }
}
}