初始化CRICS

This commit is contained in:
2025-12-11 09:17:16 +08:00
commit 83247ec0a2
2735 changed files with 787765 additions and 0 deletions

29
CommonEntity/KongQi.cs Normal file
View File

@@ -0,0 +1,29 @@
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; }
}
}