初始化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
Domain/IoTTCLEntity.cs Normal file
View File

@@ -0,0 +1,29 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Domain.IoTTCLEntity
{
public class TCLRequest
{
public string code { get; set; }
public string msg { get; set; }
public List<TCLData> data { get; set; }
public TCLInfo info { get; set; }
}
public class TCLData
{
public string deviceID { get; set; }
public string deviceType { get; set; }
public string deviceName { get; set; }
public string value { get; set; }
}
public class TCLInfo
{
public string hotel { get; set; }
public string room { get; set; }
public string mac { get; set; }
}
}