Files
Web_CRICS_Server_VS2010_Prod/CommonEntity/KongQi.cs
2025-12-11 09:17:16 +08:00

30 lines
853 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace CommonEntity
{
public class KongQi
{
public string HotelID { get; set; }
public string HotelCode { get; set; }
public string RoomNumber { get; set; }
public string CreatDate { get; set; }
}
public class KongQiReport
{
public string hotel_code { get; set; }
public string time { get; set; }
public string sign { get; set; }
public string room_no { get; set; }
public string pm25 { get; set; }
public string co2 { get; set; }
public string tvoc { get; set; }
public string humidness { get; set; }
public string temperature { get; set; }
public string methanal { get; set; }
public string pm10 { get; set; }
}
}